Tuesday, May 29, 2018

Is it possible to store different list types in a single generic list?

Yes, It is possible by creating a list of list objects. 
List<List<object>> list = new List<List<object>>();

No comments:

Post a Comment