Assembly() 공개 정적인 메소드

public static Assembly ( this type ) : Assembly,
type this
리턴 Assembly,
예제 #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;
 }