Często widzę, jak ludzie Where.FirstOrDefault()
wyszukują i chwytają pierwszy element. Dlaczego po prostu nie użyć Find()
? Czy druga strona ma przewagę? Nie potrafiłem odróżnić.
namespace LinqFindVsWhere
{
class Program
{
static void Main(string[] args)
{
List<string> list = new List<string>();
list.AddRange(new string[]
{
"item1",
"item2",
"item3",
"item4"
});
string item2 = list.Find(x => x == "item2");
Console.WriteLine(item2 == null ? "not found" : "found");
string item3 = list.Where(x => x == "item3").FirstOrDefault();
Console.WriteLine(item3 == null ? "not found" : "found");
Console.ReadKey();
}
}
}
Find
poprzedza LINQ. (był dostępny w .NET 2.0 i nie można było używać lambd. Zmuszono Cię do używania normalnych metod lub metod anonimowych)
list.FirstOrDefault(x => x == "item3");
jest bardziej zwięzły niż użycie obu.Where
i.FirstOrDefault
.