Beispiel #1
0
 public RQMethodPropertyOrEvent(
     RQUnconstructedType containingType,
     RQMethodPropertyOrEventName memberName
     ) : base(containingType)
 {
     RqMemberName = memberName;
 }
Beispiel #2
0
 public RQConstructor(
     RQUnconstructedType containingType,
     RQMethodPropertyOrEventName memberName,
     int typeParameterCount,
     IList <RQParameter> parameters
     ) : base(containingType, memberName, typeParameterCount, parameters)
 {
 }
Beispiel #3
0
 public RQMethodOrProperty(
     RQUnconstructedType containingType,
     RQMethodPropertyOrEventName memberName,
     int typeParameterCount,
     IList <RQParameter> parameters
     ) : base(containingType, memberName)
 {
     TypeParameterCount = typeParameterCount;
     Parameters         = new ReadOnlyCollection <RQParameter>(parameters);
 }
Beispiel #4
0
 public RQMember(RQUnconstructedType containingType)
 {
     ContainingType = containingType;
 }
Beispiel #5
0
 public RQMemberVariable(RQUnconstructedType containingType, string name)
     : base(containingType)
 {
     this.Name = name;
 }
Beispiel #6
0
 public RQConstructedType(RQUnconstructedType definingType, IList <RQType> typeArguments)
 {
     DefiningType  = definingType;
     TypeArguments = new ReadOnlyCollection <RQType>(typeArguments);
 }