1

Did anybody encounter portability issues when performing .NET runtime upgrade (e.g switching from 2.0 -> 3 -> 3.5 -> 4 -> 4.5)?

I couldn't find any proof for the fact that upgrading to a higher version of the runtime wouldn't affect the behavior of my application (I guess this should be so, but, well, there are always hidden caveats).

1
  • You can never prove a negative. Commented Jun 5, 2012 at 9:32

3 Answers 3

2

Refer following link: http://msdn.microsoft.com/en-us/library/ee941656.aspx

Sign up to request clarification or add additional context in comments.

Comments

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

Comments

1

Some features may be deprecated and if you are jumping more than one update, the feature could be removed all together, causing a bit of hassle.

What's Obsolete in the .NET Framework

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.