I am learning C#
on my own and I have tried to make an array from other array
but it tells me the following:
A nested Array initializer is expected
This is the code:
string[] a = {"pequeña","mediana","grande"};
string[] b = {"esbelto","mediano","gordo"};
string[] c = {"cortas","medianas","largas"};
string[,] poolfen = {a,b,c};