I want to create the following structure but I think I have a problem in the list syntax
List<ArrayList> vertices = new List<ArrayList> { { 'alfa',false},{ 'Beta',false}};
By the way, I had problems trying to make an array in this way too
string[,] vertices3 = new string[2,2] { {'alfa','nv' }, { 'alfa', 'nv' }};
But for some reason, if I can do the matrix with numbers
int[,] aristas2 = new int[2, 10] { {0,76000,0,20000,0,0,0,0,0,0 },
{ 76000,0,0,0,240000,0,0,0,360000,0 } };