我有一个名为 Employee 的类,它代表公司中的每个员工。
public class Employee
{
public string FirstName { get; set; }
public string LastName { get; set; }
public int Age { get; set; }
public string Email { get; set; }
}
我创建了一个新的员工列表
public readonly List<Employee> Employees = new List<Employee>();
现在我想通过他\她的名字从列表中找到一名员工,但我不知道如何实现这一点,因此我们将非常感谢您的帮助和感谢。