无法执行以下代码错误CS5001程序不包含适用于入口点的静态“ Main”方法
此错误消息是什么意思?
class Program
{
static async Task MainAsync(string[] args)
{
Account.accountTest accountTest = new Account.accountTest();
bool result = await accountTest.CreateAccountAsync();
}
}