Der folgende Codefehler kann nicht ausgeführt werden. CS5001-Programm enthält keine statische 'Main'-Methode, die für einen Einstiegspunkt geeignet ist
Was bedeutet diese Fehlermeldung?
class Program
{
static async Task MainAsync(string[] args)
{
Account.accountTest accountTest = new Account.accountTest();
bool result = await accountTest.CreateAccountAsync();
}
}