Framework构建版本与已安装版本

Framework构建版本与已安装版本

本文介绍了.NET Framework构建版本与已安装版本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果应用程序是为.NET Framework X版本构建的,则版本Y安装在运行它的框中(其中Y> X),这意味着什么(除了它是"兼容的")? 
如果版本X中有一个在Y中修复的错误,应用程序是否会使用该错误或修复? 换句话说,当为X版构建应用程序时,版本Y是否像版本X一样运行(包括版本X中在Y中修复
的任何错误)? 另一方面,如果Y中存在不在X中的错误,应用程序是否会遇到该错误?

解决方案

If an application was built for .NET Framework version X, and version Y is installed on a box where it's running (where Y > X), what does that mean (other than that it's "compatible")?  If there was a bug in version X that was fixed in Y, will the application be working with that bug or with the fix?  In other words, does version Y run like version X when an application was built for version X (including any bug in version X that was fixed in Y)?  On the flip side, if there's a bug in Y that wasn't in X, will the application be experiencing that bug?

解决方案


这篇关于.NET Framework构建版本与已安装版本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-29 01:16