不包含适合于入口点的静态“Main”方法/does not contain a static 'Main' method suitable for an entry point

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了不包含适合于入口点的静态“Main”方法/does not contain a static 'Main' method suitable for an entry point相关的知识,希望对你有一定的参考价值。

 

error:as subject

solution:

1. Must be declared as static

2. Main, is defined with the wrong case, such as lower-case main.

3. must return void or int

4. it must have either no parameters or else one parameter of type string[]

 

 

static void Main()
{
// Create objects by using the new operator:
...

// Create an object using the default constructor:
...

// Display results:
...
}
}

以上是关于不包含适合于入口点的静态“Main”方法/does not contain a static 'Main' method suitable for an entry point的主要内容,如果未能解决你的问题,请参考以下文章

程序不包含适合入口点的静态“main”方法

在VS2008中编译时显示CS5001:不包含适合于入口点的静态“Main”方法 不知道是啥问题?代码如下

Docker .Net 6 错误程序不包含适用于入口点的静态“主要”方法

Docker 在 VS 中运行,但在发布到 AWS 时出错?错误 CS5001:程序不包含适用于入口点的静态“Main”方法

课程作业02

“使用 /main 编译以指定包含入口点的类型。”