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

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

public Equals ( Instrument other ) : bool
other Instrument
Результат bool
        public virtual bool Equals(Instrument other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return other.Id == Id;
        }

Same methods

Instrument::Equals ( object obj ) : bool