Beispiel #1
0
        public override bool Equals(IType other)
        {
            ByReferenceType a = other as ByReferenceType;

            return(a != null && elementType.Equals(a.elementType));
        }
Beispiel #2
0
 public virtual IType VisitByReferenceType(ByReferenceType type)
 {
     return(type.VisitChildren(this));
 }