.Netframe work version

  • Thread starter Thread starter gouqizi.lvcha
  • Start date Start date
G

gouqizi.lvcha

If I have a third party precompiled DLL file, how can I know which
version of the .netframe work it will work with. Is there any tools I
can check the DLL file?
 
It should work with all versions since they are backward compatible. Some
functions are not present so forward compatibility is not an absolute
guarantee. Why do you need this information? Usually, it's the other way
around - what version of the framework will I force this assembly to use.

--
Regards,
Alvin Bruney
------------------------------------------------------
Shameless author plug
Excel Services for .NET is coming...
https://www.microsoft.com/MSPress/books/10933.aspx
OWC Black Book www.lulu.com/owc
Professional VSTO 2005 - Wrox/Wiley
 
If I have a third party precompiled DLL file, how can I know which
version of the .netframe work it will work with. Is there any tools I
can check the DLL file?

Corflags.exe, included with the .NET 2.0 SDK, will tell you which
version it was built against.


Mattias
 
Back
Top