Пример #1
0
        public override bool Equals(object obj)
        {
            ExpressionFingerprint other = obj as ExpressionFingerprint;

            if (other == null)
            {
                return(false);
            }

            return(this.NodeType == other.NodeType &&
                   this.Type == other.Type &&
                   this.GetType() == other.GetType());
        }