Askme.Domain.Answers.Equals C# (CSharp) Method

Equals() public method

public Equals ( Answers other ) : bool
other Answers
return bool
        public virtual bool Equals(Answers other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return Equals(other.answers, answers);
        }

Same methods

Answers::Equals ( object obj ) : bool