LIB FILE

  • Thread starter Thread starter Dave
  • Start date Start date
D

Dave

Hi,
I am writing a C# application that need to use an old c++ code in lib files
from vc++ 6 can i do that?
Can i import lib file to C# app and how?
Can you give me some examples code how to do that?

Thanks
 
Can i import lib file to C# app and how?

Not directly, but you can link the LIB file into a DLL, export the
functionality you want and call that from C#.



Mattias
 
Back
Top