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

Equals() public method

public Equals ( Price other ) : bool
other Price
return 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