Beispiel #1
0
 public PropertyRef(TypeRef definingType, PropertySignature signature)
     : this(null, definingType, signature)
 {
 }
Beispiel #2
0
 public PropertyRef(IImSeq <Annotation> annotations, TypeRef definingType, string name, bool isStatic, IImSeq <TypeRef> parameters, TypeRef result)
     : base(annotations, definingType)
 {
     signature = new PropertySignature(name, isStatic, parameters, result);
 }
Beispiel #3
0
 public PropertyRef(IImSeq <Annotation> annotations, TypeRef definingType, PropertySignature signature)
     : base(annotations, definingType)
 {
     this.signature = signature;
 }