LINQ проверить, существует ли в списке

using System.Linq;
...
    bool has = list.Any(cus => cus.FirstName == "John");
Important Iguana