1

.NET是否有人在执行运行时升级时遇到可移植性问题(例如从 2.0 -> 3 -> 3.5 -> 4 -> 4.5 切换)

我找不到任何证据证明升级到更高版本的运行时不会影响我的应用程序的行为(我想应该是这样,但是,总是有隐藏的警告)。

4

3 回答 3

2

请参阅以下链接:http: //msdn.microsoft.com/en-us/library/ee941656.aspx

于 2012-06-05T09:30:07.103 回答
1

There are always a few changes that could change the behavior of existing code, but these are in most cases rare edge cases and are kept to a minimum. You can find a list of breaking changes for recent releases of Visual Studio:

Visual C# 2012 RC Breaking Changes
Visual C# 2010 Breaking Changes
Visual C# 2008 Breaking Changes

于 2012-06-05T09:35:58.110 回答
1

某些功能可能已被弃用,如果您跳过多个更新,则可能会一起删除该功能,从而造成一些麻烦。

.NET Framework 中已过时的内容

于 2012-06-05T09:40:19.373 回答