运行我的项目时
在program.cs
类中
显示异常错误:
System.StackOverflowException:
“引发了类型为'System.StackOverflowException'的异常。”
请帮助
public class Program
{
public static void Main(string[] args)
{
CreateWebHostBuilder(args).Build().Run();
}
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.UseUrls("http://localhost:25333")
.UseStartup<Startup>();
}
System.StackOverflowException:
“引发了类型为'System.StackOverflowException'的异常。”