标签: c#
为什么我得到CS5001:编译时没有定义入口点的错误?
答案 0 :(得分:1)
最常见的问题是在定义Main方法时使用了小写的“m”。实现入口点的正确方法如下:
class test { static void Main(string[] args) { } }