for (int x = 0; x < YourArray.GetLength(0); x++) { for (int y = 0; y < YourArray.GetLength(1); y++) { Console.WriteLine(YourArray[x, y]); } }