public RQOutParameter(RQType type) : base(type) { }
public RQNormalParameter(RQType type) : base(type) { }
public RQArrayType(int rank, RQType elementType) : base(elementType) { this.Rank = rank; }
public RQPointerType(RQType elementType) : base(elementType) { }
public RQExplicitInterfaceMemberName(RQType interfaceType, RQOrdinaryMethodPropertyOrEventName name) { this.InterfaceType = interfaceType; this.Name = name; }
public RQRefParameter(RQType type) : base(type) { }
public RQParameter(RQType type) { System.Diagnostics.Debug.Assert(type != null); this.Type = type; }