using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
string[,] arr2d = new string[,]
{
{"c#", "java"},
{"c", "c++"},
{"php", "javascript"},
};
int ub0 = arr2d.GetUpperBound(0);
for (int i = 0; i <= ub0; i++)
{
string s1 = arr2d[i, 0];
string s2 = arr2d[i, 1];
Console.WriteLine("{0}, {1}", s1, s2);
}
}
}
}
/*
run:
c#, java
c, c++
php, javascript
*/