Tester.StreamingTests.Comment.Equals C# (CSharp) Метод

Equals() защищенный Метод

protected Equals ( Comment other ) : bool
other Comment
Результат bool
        protected bool Equals(Comment other)
        {
            return string.Equals(Id, other.Id) && string.Equals(ThreadId, other.ThreadId) && string.Equals(CommentText, other.CommentText) && Equals(Sender, other.Sender);
        }

Same methods

Comment::Equals ( object obj ) : bool