Esempio n. 1
0
 public CorPropertyDef(CorModuleDef readerModule, uint rid, CorTypeDef ownerType)
 {
     this.readerModule = readerModule;
     this.rid = rid;
     this.origRid = rid;
     this.ownerType = ownerType;
 }
Esempio n. 2
0
 public CorFieldDef(CorModuleDef readerModule, uint rid, CorTypeDef ownerType)
 {
     this.readerModule = readerModule;
     this.rid          = rid;
     this.origRid      = rid;
     this.ownerType    = ownerType;
 }
Esempio n. 3
0
		public CorMethodDef(CorModuleDef readerModule, uint rid, CorTypeDef ownerType) {
			this.readerModule = readerModule;
			this.rid = rid;
			this.origRid = rid;
			this.ownerType = ownerType;
			this.canFreeMethodBody = true;
		}
Esempio n. 4
0
 public CorMethodDef(CorModuleDef readerModule, uint rid, CorTypeDef ownerType)
 {
     this.readerModule = readerModule;
     this.rid          = rid;
     origRid           = rid;
     this.ownerType    = ownerType;
     canFreeMethodBody = true;
 }