私はというクラスを持っています
MyClass
このクラスはIEquatableを継承し、必要な方法で同等の実装を行います。(意味:コード内で2つのMyClass tyupeオブジェクトを個別に比較すると、機能します)
次に、2つのリストを作成します。
var ListA = new List<MyClass>();
var ListB = new List<MyClass>();
// Add distinct objects that are equal to one another to
// ListA and ListB in such a way that they are not added in the same order.
ListAとListBを比較するとき、私は真実になるべきですか?
ListA.Equals(ListB)==true; //???