コード例 #1
0
ファイル: Conversation.cs プロジェクト: ErikBZ/brigit
        public override bool Equals(object obj)
        {
            if (!(obj is Conversation))
            {
                return(false);
            }

            var other = obj as Conversation;

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