I have some code I\'m trying to understand while learning C#. I do not understand what I even need to search Google for to get here, but the code is as follows:
<
It means it is a multidimensional array.
See MSDN.
That the array is multi-dimensional - two-dimensional in your case.
That would be a two-dimensional array. You can also specify more dimensions:
Multidimensional Arrays (C# Programming Guide)
Each comma adds an additional dimension to the array [,] = 2 dimensional [,,] = 3 dimensional ...