GetContainedList
ChoNestedList<T> provides a helper method to find the list containing an item.
1. Add reference to Cinchoo.Core.dll assembly
2. Namespace Cinchoo.Core.Collections.Generic
Sample code,
static void Main(string[] args) { ChoNestedList topList = new ChoNestedList(); topList.Add("TopList-Tom"); topList.Add("TopList-Mark"); ChoNestedList nestedList1 = new ChoNestedList(); nestedList1.Add("NestedList1-Raj"); nestedList1.Add("NestedList1-Peter"); nestedList1.Add("NestedList1-Samuel"); topList.Add(nestedList1); topList.Add("TopList-Nancy"); foreach (string name in topList.GetContainedList("NestedList1-Raj")) Console.WriteLine(name); }
When you run the above code, the output will be
NestedList1-Raj NestedList1-Peter NestedList1-Samuel Press any key to continue . . .
