M Manoj Apr 30, 2005 #1 Hi, How can I import a VC++ .lib file in my c# application thanks in advance Manoj Nair
W Willy Denoyette [MVP] Apr 30, 2005 #2 Manoj said: Hi, How can I import a VC++ .lib file in my c# application thanks in advance Manoj Nair Click to expand... 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.
Manoj said: Hi, How can I import a VC++ .lib file in my c# application thanks in advance Manoj Nair Click to expand... 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.
M Mattias Sjögren Apr 30, 2005 #3 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
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