コード例 #1
0
ファイル: PointerType.cs プロジェクト: benda/ILSpyTheming
        public override bool Equals(IType other)
        {
            PointerType a = other as PointerType;

            return(a != null && elementType.Equals(a.elementType));
        }