Sharekhan.domain.Price.Equals C# (CSharp) Метод

Equals() публичный Метод

public Equals ( Price other ) : bool
other Price
Результат 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