internal NestedSealedClassWithReflection(ITypeWithReflection declaringType, Type type)
 {
     typeWithReflection       = new NestedClassWithReflection(declaringType, type);
     sealedTypeWithReflection = new SealedTypeWithReflection(this);
     events     = new SealedClassEventCollectionWithReflection(sealedTypeWithReflection);
     indexers   = new SealedClassIndexerCollectionWithReflection(sealedTypeWithReflection);
     methods    = new SealedClassMethodCollectionWithReflection(sealedTypeWithReflection);
     properties = new SealedClassPropertyCollectionWithReflection(sealedTypeWithReflection);
 }
Esempio n. 2
0
 public SealedClassFieldCollection(SealedTypeWithReflection typeWithReflection)
 {
     this.typeWithReflection = typeWithReflection;
 }
Esempio n. 3
0
 internal SealedClassNestedStructCollection(SealedTypeWithReflection typeWithReflection)
 {
     this.typeWithReflection = typeWithReflection;
 }