Hi I want to create a List in a List, I make that
public List<List<int>> CellsByNumero = new List<List<int>>() { { 1, 7, 13, 18, 19, 25, 31 },{1, 2, 3, 25, 26, 27, 31, 32, 33 } };
but I have an error for each list, Is there a way to do that? or should I use Add for each List?