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