public override bool Equals(IType other) { ByReferenceType a = other as ByReferenceType; return(a != null && elementType.Equals(a.elementType)); }
public virtual IType VisitByReferenceType(ByReferenceType type) { return(type.VisitChildren(this)); }
public virtual IType VisitByReferenceType(ByReferenceType type) { return type.VisitChildren(this); }
bool ISupportsInterning.EqualsForInterning(ISupportsInterning other) { ByReferenceType brt = other as ByReferenceType; return(brt != null && this.elementType == brt.elementType); }