How do I write this linq query:
List<List<string>> listOfLists = new List<List<string>>();
listOfLists.Add(new List<string>(){"Item1", "Item2"});
listOfLists.Add(new List<string>() { "Item2", "Item2" });
//Does listOfLists contain at least one list that has one or more items?