摘要:
首次发布于2021-03-19 19:52 在开发ASP.NET Core Web程序,使用第三方登录验证服务的时候,如果程序配置为http协议并且使用Chromium内核的浏览器(Chrome、Edge等)进行调试时会发生如下错误 System.Exception: An error was en 阅读全文
摘要:
!(null forgiving operator) 首先加上nullable的声明,否则将没有相关提示。 #nullable enable namespace DotNet_5._0_p7 { class Pet { public Pet (Cat? cat, Dog dog) { Cat = c 阅读全文