using System;
namespace namespaceaaa
{
class Anjila
{
Static void Main (string[] args)
{
int[,] twobyythree = new int[2,3] {{1,2,3},{4,5,6}};
Console.WriteLine(twobyythree);
}
}
}
期望输出为[2,3]数组形式。
Static
在c#中不是关键字。所有关键字都是小写的
把这行改成这样,看看会发生什么。
static void Main (string[] args)