问题 This is my Employee class and its collection. public class Employee { public string LastName { get; set; } public string FirstName { get; set; } public bool IsHardWorking { get; set; } public string Description { get; set; } } List<Employee> Employees = new List<Employee>() { new Employee() { IsHardWorking = false, LastName = "Silly", FirstName = "Dude", Description= "this due is a mess" }, new Employee() { IsHardWorking = true, LastName = "Mean", FirstName = "Person", Description= "funny" },