Possible Duplicate:
In C#, why can't a List<string> object be stored in a List<object> variable
I thought this could work:
private List<DateTime> _dateTimes = new List<DateTime>();
private List<String> _strings = new List<String>();
private List<List<Object>> _listOfLists = new List<List<Object>>();
_listOfLists.Add(_dateTimes);
_listOfLists.Add(_strings);
But, I get a compiler error stating that the .Add method has some invalid arguments...Does anybody see why? And, what can be a solution to have a generic List of Lists?