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

            return(a != null && elementType.Equals(a.elementType));
        }
コード例 #2
0
ファイル: TypeVisitor.cs プロジェクト: waqar41/Amplifier.NET
 public virtual IType VisitPointerType(PointerType type)
 {
     return(type.VisitChildren(this));
 }