Example #1
0
 public CecilFieldRef(CecilReferenceProvider provider, FieldReference field) : base(provider, field)
 {
 }
Example #2
0
 public CecilTypeEditor(TypeDefinition type)
 {
     _type       = type;
     _references = CecilReferenceProvider.ForModule(type.Module.Assembly.MainModule);
 }
Example #3
0
 public CecilTypeEditor(TypeDefinition type)
 {
     _type = type;
     _references = CecilReferenceProvider.ForModule(type.Module.Assembly.MainModule);
 }
Example #4
0
 public CecilMethodRef(CecilReferenceProvider provider, MethodReference method) : base(provider, method)
 {
 }
Example #5
0
 public CecilTypeRef(CecilReferenceProvider provider, TypeReference type) : base(provider, type)
 {
 }
Example #6
0
 public CecilRef(CecilReferenceProvider provider, T reference)
 {
     _provider  = provider;
     _reference = reference;
 }