public static void Main()
string display = string.Empty;
string[, ] strArray = {{"Apple"}, {"Banana"}, {"Orange"}, {"Papaya"}};
for (int row = 0; row < strArray.GetLength(0); row++)
for (int column = 0; column < strArray.GetLength(1); column++)
display += strArray[row, column] + " ";
Console.WriteLine(display);
Console.WriteLine("\n**********OR**********\n");
for (int row = 0; row < strArray.GetLength(0); row++)
Console.WriteLine(strArray[row, 0]);