.NET
是否有人在执行运行时升级时遇到可移植性问题(例如从 2.0 -> 3 -> 3.5 -> 4 -> 4.5 切换)?
我找不到任何证据证明升级到更高版本的运行时不会影响我的应用程序的行为(我想应该是这样,但是,总是有隐藏的警告)。
.NET
是否有人在执行运行时升级时遇到可移植性问题(例如从 2.0 -> 3 -> 3.5 -> 4 -> 4.5 切换)?
我找不到任何证据证明升级到更高版本的运行时不会影响我的应用程序的行为(我想应该是这样,但是,总是有隐藏的警告)。
请参阅以下链接:http: //msdn.microsoft.com/en-us/library/ee941656.aspx
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
某些功能可能已被弃用,如果您跳过多个更新,则可能会一起删除该功能,从而造成一些麻烦。