コード例 #1
0
 internal NestedEnumMemberWithReflection(NestedEnumWithReflection declaringType, FieldInfo field)
 {
     this.declaringType = declaringType;
     this.field         = field;
     attributes         = new Lazy <Attributes>(() => new Attributes(field));
 }
コード例 #2
0
 internal StructNestedEnumWithReflection(ITypeWithReflection declaringType, Type type)
 {
     nestedEnum = new NestedEnumWithReflection(declaringType, type);
 }