Exemplo n.º 1
0
 public CorPropertyDef(CorModuleDef readerModule, uint rid, CorTypeDef ownerType)
 {
     this.readerModule = readerModule;
     this.rid = rid;
     this.origRid = rid;
     this.ownerType = ownerType;
 }
Exemplo n.º 2
0
 public CorFieldDef(CorModuleDef readerModule, uint rid, CorTypeDef ownerType)
 {
     this.readerModule = readerModule;
     this.rid          = rid;
     this.origRid      = rid;
     this.ownerType    = ownerType;
 }
Exemplo 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;
		}
Exemplo n.º 4
0
 public CorMethodDef(CorModuleDef readerModule, uint rid, CorTypeDef ownerType)
 {
     this.readerModule = readerModule;
     this.rid          = rid;
     origRid           = rid;
     this.ownerType    = ownerType;
     canFreeMethodBody = true;
 }