Hi, Let's suppose i want to filter from a list the surname "Gates and Smith,how do you do it? Am I missing the obvious Code Snippet class Program { static void Main( string [] args) { List Customer > customerList = new List Customer >(); customerList.Add( new Customer { Id=1,Name= "Jo" ,Surname= "Bloggs" }); customerList.Add( new Customer { Id = 2, Name = "Mark" , Surname = "Smith" }); customerList.Add( new Customer { Id = 3, Name = "Howard" , Surname = "Gates" }); customerList.Add( new Customer
Read More...