I'm not understanding why the following code is raising CS0022: Wrong number of indices inside []; expected 2.
int[] oneArray;
int[,] twoArray = { { 1, 2, 3 }, { 3, 2, 1 } };
oneArray = twoArray[0];
I have declared an array and am unable to assign it to an array from my two-dimensional array.
Maybe I'm too used to Python...I'd appreciate any information on the topic!