Reputation: 1
I use C# with the .NET 1.1 Framework for a Windows application. We have a requirement to upgrade it to .NET 3.5.
Which method is more suitable?
Upvotes: 0
Views: 409
Reputation: 156898
Simply convert one of your projects to .NET 3.5 and see what happens. I would even suggest to use 4.5 since that will make your code more future proof. Start from the UI project and work your way down.
Usually your code will work. There are quite some adjustments made in the framework, so if you happen to use some deprecated feature, you need to rewrite your code. Usually the compiler sill suggest you what to do or read.
You would probably want to use new features introduced since .NET 1.1, like generic lists, etc. This will need a further review than just converting your code.
Upvotes: 3