コード例 #1
0
        public override bool Equals(IType other)
        {
            ByReferenceType a = other as ByReferenceType;

            return(a != null && elementType.Equals(a.elementType));
        }
コード例 #2
0
ファイル: TypeVisitor.cs プロジェクト: sq/ILSpy-JSIL
 public virtual IType VisitByReferenceType(ByReferenceType type)
 {
     return(type.VisitChildren(this));
 }
コード例 #3
0
		public virtual IType VisitByReferenceType(ByReferenceType type)
		{
			return type.VisitChildren(this);
		}
コード例 #4
0
ファイル: ByReferenceType.cs プロジェクト: shalang/ILSpy
        bool ISupportsInterning.EqualsForInterning(ISupportsInterning other)
        {
            ByReferenceType brt = other as ByReferenceType;

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