I am writing a C# application and I have troble parsing an object that is inside of list of list. Right now, I have something like,
List<List<MyObj>> list;
and I am just trying to get the list of MyObj. And, it looks like the outer list is generic. How do I just get the inner list (List)?
Thank you for your help.