import vc++ lib file

  • Thread starter Thread starter Manoj
  • Start date Start date
Manoj said:
Hi,

How can I import a VC++ .lib file in my c# application

thanks in advance

Manoj Nair

You can't.
Yo can only call C style exported functions from a DLL, so you need to build
a DLL from your .lib.

Willy.
 
How can I import a VC++ .lib file in my c# application

You can't do that directly. You first have to link it into a DLL and
export the functionality you want.



Mattias
 
Back
Top