关于.net standard 与 .net core, net framework
.net standard的程序集中定义的是一些标准接口,.net core与.net framework都可以调用。
而.net core编写的程序集与.net framework的程序集是不兼容的,比如.net core3.1编写的程序集使用了system.io.filesystem的版本是 4.2.2,而.net framework4.0编写的程序集使用了system.io.filesystem的版本是4.0.1。
程序运行时就会有一个程序集加载失败。
这里不是很确定,先记下吧
另附:
.net core与 .net framework的性能对比
.net core 2.0与 .net core 3.0性能对比