framework compatability

B

Bob Bins

When upgrading a application from 1.1 to 2.0 3rd party assemblies needed to
be rebuilt for the 2.0 framework so they didn't have the performance hit of
running in side by side mode.

Is there any benifit to recompiling version 2.0 assemblies to 3 or 3.5 when
being used in a 3.0 or 3.5 application if their not using any of the new
functionality? Is there still the side by side performance hit when not
using the assemblies not built with the latest?
 
J

Jon Skeet [C# MVP]

When upgrading a application from 1.1 to 2.0 3rd party assemblies needed to
be rebuilt for the 2.0 framework so they didn't have the performance hit of
running in side by side mode.

Is there any benifit to recompiling version 2.0 assemblies to 3 or 3.5 when
being used in a 3.0 or 3.5 application if their not using any of the new
functionality? Is there still the side by side performance hit when not
using the assemblies not built with the latest?

No. Rebuilding it would effectively produce the same binary. With 1.1,
you were running a different runtime. With 2.0 you're running the same
runtime whether you're using 2.0, 3.0 or 3.5.

Jon
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top