Sharekhan.domain.Symbol.Equals C# (CSharp) Méthode

Equals() public méthode

public Equals ( Symbol other ) : bool
other Symbol
Résultat 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