C# Class Cruncher.Extensions.AssemblyExtensions

Encapsulates a series of time saving extension methods to the T:System.Reflection.Assembly class.
Show file Open project: JimBobSquarePants/Cruncher

Public Methods

Method Description
GetLoadableTypes ( this assembly ) : IEnumerable

Gets a collection of loadable types from the given assembly. Adapted from

Method Details

GetLoadableTypes() public static method

Gets a collection of loadable types from the given assembly. Adapted from
public static GetLoadableTypes ( this assembly ) : IEnumerable
assembly this /// The to load the types from. ///
return IEnumerable