Beispiel #1
0
 public EventRef(TypeRef definingType, EventSignature signature)
     : this(null, definingType, signature)
 {
 }
Beispiel #2
0
 public EventRef(IImSeq <Annotation> annotations, TypeRef definingType, string name)
     : base(annotations, definingType)
 {
     signature = new EventSignature(name);
 }
Beispiel #3
0
 public EventRef(IImSeq <Annotation> annotations, TypeRef definingType, EventSignature signature)
     : base(annotations, definingType)
 {
     this.signature = signature;
 }