c# initialize array 2 dimensions code example
Example 1: how to declare 2d array in c#
// Two-dimensional array.
int[,] array2D = new int[,] { { 1, 2 }, { 3, 4 }, { 5, 6 }, { 7, 8 } };
Example 2: initialize matrix c#
int[,] matrix = new int[10,9];