Exemplo n.º 1
0
        public override bool Equals(IType other)
        {
            ByReferenceType a = other as ByReferenceType;

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

            return(brt != null && this.elementType == brt.elementType);
        }