Let us say I have this code
string seachKeyword = \"\";
List sl = new List();
sl.Add(\"store\");
sl.Add(\"State\");
sl.Add(\"STAM
For those of you having problems with searching through a LIST of LISTS, I found a solution.
In this example I am searching though a Jagged List and grabbing only the Lists that have the first string matching the argument.
List> TEMPList = new List>();
TEMPList = JaggedList.FindAll(str => str[0].ToLower().Contains(arg.ToLower()));
DoSomething(TEMPList);