C# 语法问题
函数名=> 是什么意思lambda表达式吗?比如
public static IWebHostBuilder CreateWebHostBuilder(string[] args) => WebHost.CreateDefaultBuilder(args) .UseStartup<Startup>();
这是 C# 6.0 的新特性,叫 Expression Bodied Functions ,详见 C# : The New and Improved C# 6.0
谢谢了