Framework retro compatibilty

  • Thread starter Thread starter Nico
  • Start date Start date
N

Nico

Hi,

I know it's possible to call a Framework 3.5 compile dll in a with a
Framework 2.0 compile executalbe for exemple. Is it supported and recommended
???

And what about with a 1.1 Framework execuable??

Thank for your help.
 
It is supported in one of two ways:

1. You have no non 2.0 features in the 3.5 DLL
2. You are running both in 3.5 Framework

Overall, I would prefer to stick with one framework. When you start hitting
1.1, you are getting very risky and should encapsulate your logic into a
service, so you do not have to worry about 1.1 to 2.5 incompatibilities.

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

Subscribe to my blog
http://gregorybeamer.spaces.live.com/lists/feed.rss

*************************************************
| Think outside the box!
|
*************************************************
 
Thanks

You mean that if I don't want to recompile my calling application in 3.5 I
can't use link in my DLL for exemple...
 
Back
Top