What does “replaces versions” means in .NET Framework terms?

寵の児 提交于 2019-12-02 00:57:15

问题


Wikipedia says that the .NET Framework 4.7 replaces versions 4.0–4.6.2. Does this mean that I can run a program that requires (for example) .NET Framework 4.0 with only .NET Framework 4.7 installed?


回答1:


That means that 4.7 is a drop in replacement for 4.0–4.6.2.

For example, if you installed .net 2.0 on a system that already had .net 1.0 you would end up with two instances of .net: 1.0 & 2.0.

If you install .net 4.7 on a system that has .net 4.6 only, then you would only have one .net version on that system, which would be .net 4.7. The 4.6 .net files are updated to their 4.7 equivalents.



来源:https://stackoverflow.com/questions/45642004/what-does-replaces-versions-means-in-net-framework-terms

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!