BitOrchestra.ConstantExpression.Equals C# (CSharp) Method

Equals() public method

public Equals ( object obj ) : bool
obj object
return bool
        public override bool Equals(object obj)
        {
            if (this == obj)
                return true;

            ConstantExpression ce = obj as ConstantExpression;
            return
                ce != null &&
                this.Value == ce.Value;
        }