类、记录、结构或接口成员声明错误中的令牌'void'无效是什么意思?


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)

相关内容

  • 没有找到相关文章

最新更新