Parsing generic list
I have an object, MyLists and there I have a member which holds a
List<Customers> lst, where Customers is another object.
Now, I receive outside, in a method of mine, as parameters, an entire object MyLists, and a string, CustomerName.
I need to parse the List<Customers> from MyLists parameter, to find the value of CustomerName, and return the index where I found it.
How can I parse List<Customers> and take the index ?
Thanks,
Daniela

