I dont\'t have any code for this, but I do want to know how I could do this. I use visual studio 2010 C# if that matters.
Thanks
Jason
Do it like this:
static public void Print2DArray(int[][] A) { foreach (int[] row in A) { foreach (int element in row) { Console.Write(element.ToString() + " "); } Console.WriteLine(); } }