how we can convert .net 1.1 to .net 2.0 without any change in code?
A:
Just change the target framework to .NET Framework 2.0.

You shouldn't need to change any code, but if you do, it shouldn't be too drastic to fix
Charlie Somerville
2010-04-30 10:48:08
If he has a 1.1 project, he probably uses VS 2005, where you cannot change the target framework that easily.
Jens
2010-04-30 10:50:51
+1
A:
Not every program can be converted from 1.1 to 2.0 without any change to its code. You might get lucky on your project, though.
See the breaking changes between 1.1 and 2.0.
Jens
2010-04-30 10:49:51
That's just plain un-true. In general *you can*, and very easily. Of course, there are always cases where you get problems, but these are all resolvable.
Dan Diplo
2010-04-30 10:55:09
@Dan: The question states "without any change in code". When I said "in general" I meant "there exists a program, where this is not possible". Damn mathematical education. =)
Jens
2010-04-30 11:36:38
@Jens OK, understood - the new wording makes more sense to my English-educated mind :)
Dan Diplo
2010-04-30 12:10:53
+4
A:
I think there might be scenario where code changes are required and may be not. It all depend on your code base. For a start point you can check following links:
ARS
2010-04-30 10:50:57