示例#1
0
        public override bool Equals(object obj)
        {
            if (!(obj is Conversation))
            {
                return(false);
            }

            var other = obj as Conversation;

            return(ll.Equals(other.ll));
        }