public override bool Equals(object obj) { if (!(obj is Conversation)) { return(false); } var other = obj as Conversation; return(ll.Equals(other.ll)); }