タイプのオブジェクトとMyBull
:List<MyBull> orig
がある場合
// Just an example
MyBull x = getMeTheObjectWithIdFromDB(9);
orig.add(x);
// Again same? data object
MyBull y = getMeTheObjectWithIdFromDB(9);
では、なぜこれが間違っているのでしょうか。
// This is false, even though all the properties
// of x and y are the same.
orig.Contains<MyBull>(y);