错误消息“CS5001 程序不包含适用于入口点的静态‘主’方法"

编程入门 行业动态 更新时间:2024-10-27 07:15:57
本文介绍了错误消息“CS5001 程序不包含适用于入口点的静态‘主’方法"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

无法执行以下代码错误 CS5001 程序不包含适合入口点的静态Main"方法

Unable to execute the following code error CS5001 Program does not contain a static 'Main' method suitable for an entry point

这个错误信息是什么意思?

What does this error message mean?

class Program { static async Task MainAsync(string[] args) { Account.accountTest accountTest = new Account.accountTest(); bool result = await accountTest.CreateAccountAsync(); } }

推荐答案

说明你的应用目前没有合适的入口点.

It means that you don't have a suitable entry point for your application at the moment.

该代码几乎可以与 C# 7.1 一起使用,但您需要在项目文件中显式启用 C# 7.1:

That code will nearly work with C# 7.1, but you do need to explicitly enable C# 7.1 in your project file:

<LangVersion>7.1</LangVersion>

或更笼统地说:

<LangVersion>latest</LangVersion>

您还需要将 MainAsync 重命名为 Main.比如:

You also need to rename MainAsync to Main. So for example:

程序.cs:

using System.Threading.Tasks; class Program { static async Task Main(string[] args) { await Task.Delay(1000); } }

ConsoleApp.csproj:

ConsoleApp.csproj:

<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>netcoreapp2.0</TargetFramework> <LangVersion>7.1</LangVersion> </PropertyGroup> </Project>

...构建并运行良好.

... builds and runs fine.

更多推荐

错误消息“CS5001 程序不包含适用于入口点的静态‘主’方法"

本文发布于:2023-11-15 12:36:17,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1594500.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:适用于   静态   不包含   入口   错误

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!