Assembly() public static method

public static Assembly ( this type ) : Assembly,
type this
return Assembly,
Exemplo n.º 1
0
 protected Profile()
 {
     ProfileName = GetType().FullName;
     AllowNullDestinationValues = true;
     ConstructorMappingEnabled  = true;
     IncludeSourceExtensionMethods(TypeExtensions.Assembly(typeof(Enumerable)));
     ShouldMapProperty = p => TypeExtensions.IsPublic(p);
     ShouldMapField    = f => f.IsPublic;
 }