Rozważmy this kod:Dlaczego funkcja Array.IndexOf nie sprawdza, czy IEquatable podobna jest do listy <T>?
public static void Main()
{
var item = new Item { Id = 1 };
IList list = new List<Item> { item };
IList array = new[] { item };
var newItem = new Item { Id = 1 };
var lIndex = list.IndexOf(newItem);
var aIndex = array.IndexOf(newItem);
Console.WriteLine(lIndex);
Console.WriteLine(aIndex);
}
public class Item : IEquatable<Item>
{
public int Id { get; set; }
public bool Equals(Item other) => other != null && other.Id == Id;
}
Wyniki:
0
-1
Dlaczego są różne wyniki między List<T>
i Array
? Zgaduję, że jest to zgodne z projektem, ale dlaczego?
Patrząc na kod List<T>.IndexOf
zastanawiam się jeszcze bardziej, ponieważ jest to portowanie do Array.IndexOf
.
Napisałem mały post na temat tego pytania: http://blog.rogatnev.net/2017/07/1 4/IndexOf-with-IEquatable.html – Backs