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