two dimensional string array c# code example
Example: C# 2D arrays string
string[,] array2Db = new string[3, 2] { { "one", "two" },
{ "three", "four" },
{ "five", "six" } };