Askme.Domain.Answer.Equals C# (CSharp) Метод

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

public Equals ( Answer other ) : bool
other Answer
Результат bool
        public virtual bool Equals(Answer other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return Equals(other.createdOn, createdOn)
                && Equals(other.user, user)
                && Equals(other.text, text)
                && other.answerId == answerId;
        }

Same methods

Answer::Equals ( object obj ) : bool