I have a List and i need to take a sublist out of this list. Is there any methods of List available for this in .NET 3.5?
List
Would it be as easy as running a LINQ query on your List?
List mylist = new List{ "hello","world","foo","bar"}; List listContainingLetterO = mylist.Where(x=>x.Contains("o")).ToList();