tags:

views:

109

answers:

3

Are there any known stability issues when using .NET 1.1 libraries in a .NET 4.0 application?

A: 

Come on, buddy, why on earth you would use NET 1 libraries in NET 4 application? NET1 is almost nine years old, you should use at least NET2 or better yet NET 35 libraries for what is worth.

Dick Lampard
Why would you replace a tyre that has no defects? -1
Matt Ellen
I don't think he would have asked the question if he had a choice. Sometimes we are forced to use legacy code over which we have no control.
erikric
NET 35 sounds very futuristic. I'd have thought that was years in the making.
bzlm
Do you really think I'm asking this question just for fun? I'm just dealing with such issues!
Saintedlama
+1  A: 

We have used many .NET 1.0 libraries in different version of framework (any thing between 1.1 to 4.0) and have never experienced any issues. we currently use SQLDataProvider which I think was release a bit after .NET 1.0.

Then again it all depends on the code that is included in those libraries. I would spend some time to look for updated version of those libraries or even alternative, specially something that was written in 2.0 or higher just because of introduction of generics.

but otherwise, do some testing and you should be fine.

Keivan
A: 

Generic answer is NO. You should be able to use .NET 1.1 libraries in a .NET 4.0 project witout any issues. But every library is different. Is it a custom dll? Does it use any COM components?

WinFXGuy
There are COM libraries involved!
Saintedlama