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

Equals() public méthode

public Equals ( Price other ) : bool
other Price
Résultat bool
        public bool Equals(Price other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return other.Value == Value;
        }

Same methods

Price::Equals ( object obj ) : bool