Answers for "IList instantiation"

0

IList instantiation

IList<IList<int>> my_ilist = new List<IList<int>> { };
my_ilist.Add(new List<int> { 1 });
Posted by: Guest on May-09-2021

Browse Popular Code Answers by Language