error CS5001: Program `Program.exe' does not contain a static `Main' method suitable for an entry point Compilation failed: 1 error(s), 0 warnings
为什么我会出现这样的错误?
没问题,运行好着呢!
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
char[,] ch = { {'我','是','软'},{'件','工','程'},{'师','啦','!'}};
Console.WriteLine("{0}{1}{2}",ch[1,1],ch[1,2],ch[2,0]);
}
}
}
这是我的代码