using System;
namespace _2D_array
{
class Program
{
static void Main(string[] args)
{
string[,] names={{"black","white"},{"red","green"}};
for (int i = 0; i < names.GetLength(0); i++)
for (int j = 0; j < names.GetLength(1); j++)
Console.WriteLine(names[i,j]);
Console.ReadKey();
}
}
}
namespace _2D_array
{
class Program
{
static void Main(string[] args)
{
string[,] names={{"black","white"},{"red","green"}};
for (int i = 0; i < names.GetLength(0); i++)
for (int j = 0; j < names.GetLength(1); j++)
Console.WriteLine(names[i,j]);
Console.ReadKey();
}
}
}
Comments
Post a Comment