backward compatibility - VS.NET2003 and VS.NET2002

  • Thread starter Thread starter Dev
  • Start date Start date
D

Dev

Dear Friends,

I have created VC++.NET dll by VS.NET2003.Is it possible to use this dll(vs.net2003) into C# version (Vs.net2002)?

Is there backward compatibility? If so ..How do to this?..If anyone knows ..please let me know.

Thanks,

Dev
 
The version of visual studio you use isn't really at issue. The problem is the version of the framework the dll is set up to accept. If you want to support both versions of the framework with your c++ dll, you'll have to compile it and explicitly name each version of the framework you know your dll works with. So, assemblies aren't automatically backwards compatible.

Chris
Dear Friends,

I have created VC++.NET dll by VS.NET2003.Is it possible to use this dll(vs.net2003) into C# version (Vs.net2002)?

Is there backward compatibility? If so ..How do to this?..If anyone knows ..please let me know.

Thanks,

Dev
 
Back
Top