public static void Main()
Console.WriteLine("Hello World");
int[,] array = new int[4, 4] { { 3, 3, 0, 2 }, { 3, 2, 4, 3 }, { 2, 3, 4, 0 }, { 3, 4, 1, 2 } };
Console.WriteLine(array.GetLength(0));
int[] minRow = new int[array.GetLength(1)];
int[] maxCol = new int[array.GetLength(0)];
for (int i = 0; i < array.GetLength(0); i++)
for (int j = 0; j < array.GetLength(1); j++)
Console.Write(array[i, j] + " ");
Console.WriteLine("este: {0}", minRow.Min());
for (int i = 0; i < array.GetLength(1); i++)
int[] arrayTemp = new int[array.GetLength(0)];
for (int j = 0; j < array.GetLength(0); j++)
arrayTemp[j] = array[i, j];
Console.Write(array[i, j] + " ");
maxCol[i] = arrayTemp.Max();
for(int y = 0; y< maxCol.Length; y++)
Console.Write("{0} ",maxCol[y]);