コード例 #1
0
 public CustomAttribute(MethodReference constructor)
 {
     this.constructor = constructor;
     this.resolved    = true;
 }
コード例 #2
0
 public CustomAttribute(MethodReference constructor, byte [] blob)
 {
     this.constructor = constructor;
     this.resolved    = false;
     this.blob        = blob;
 }
コード例 #3
0
 internal CustomAttribute(uint signature, MethodReference constructor)
 {
     this.signature   = signature;
     this.constructor = constructor;
     this.resolved    = false;
 }