Sharekhan.domain.Symbol.Equals C# (CSharp) Method

Equals() public method

public Equals ( Symbol other ) : bool
other Symbol
return bool
        public bool Equals(Symbol other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return Equals(other.Value, Value);
        }

Same methods

Symbol::Equals ( object obj ) : bool