using System; class MainClass { static void Main() { int[,] arr1 = { { 0, 1 }, { 2, 3 } }; foreach (int element in arr1) { Console.WriteLine ("Element: {0}", element); } } }
Element: 0 Element: 1 Element: 2 Element: 3