为什么在MVC核心的class program.cs中出现System.StackOverflowException

时间:2019-07-02 09:16:49

标签: c#

运行我的项目时 在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'的异常。”

0 个答案:

没有答案