示例#1
0
 public RQIndexer(
     RQUnconstructedType containingType,
     RQMethodPropertyOrEventName memberName,
     int typeParameterCount,
     IList<RQParameter> parameters)
     : base(containingType, memberName, typeParameterCount, parameters)
 { }
示例#2
0
 public RQIndexer(
     RQUnconstructedType containingType,
     RQMethodPropertyOrEventName memberName,
     int typeParameterCount,
     IList <RQParameter> parameters)
     : base(containingType, memberName, typeParameterCount, parameters)
 {
 }
示例#3
0
 public RQMethodOrProperty(
     RQUnconstructedType containingType,
     RQMethodPropertyOrEventName memberName,
     int typeParameterCount,
     IList<RQParameter> parameters)
     : base(containingType, memberName)
 {
     this.TypeParameterCount = typeParameterCount;
     this.Parameters = new ReadOnlyCollection<RQParameter>(parameters);
 }
示例#4
0
 public RQMethodOrProperty(
     RQUnconstructedType containingType,
     RQMethodPropertyOrEventName memberName,
     int typeParameterCount,
     IList <RQParameter> parameters)
     : base(containingType, memberName)
 {
     this.TypeParameterCount = typeParameterCount;
     this.Parameters         = new ReadOnlyCollection <RQParameter>(parameters);
 }
 public RQMethodPropertyOrEvent(RQUnconstructedType containingType, RQMethodPropertyOrEventName memberName)
     : base(containingType)
 {
     this.RqMemberName = memberName;
 }
 public RQMethodPropertyOrEvent(RQUnconstructedType containingType, RQMethodPropertyOrEventName memberName)
     : base(containingType)
 {
     this.RqMemberName = memberName;
 }