B Bill Nov 6, 2004 #1 If I statically link a library (unmanaged c++) in managed c++, does it run under native code like calling a DLL?
If I statically link a library (unmanaged c++) in managed c++, does it run under native code like calling a DLL?
J Jochen Kalmbach Nov 6, 2004 #2 Hi Bill, If I statically link a library (unmanaged c++) in managed c++, does it run under native code like calling a DLL? Click to expand... Yes. Every time you call a funtion from the unmanged LIB, a transition to the unmanaged world will take place... and vice-versa. -- Greetings Jochen My blog about Win32 and .NET http://blog.kalmbachnet.de/
Hi Bill, If I statically link a library (unmanaged c++) in managed c++, does it run under native code like calling a DLL? Click to expand... Yes. Every time you call a funtion from the unmanged LIB, a transition to the unmanaged world will take place... and vice-versa. -- Greetings Jochen My blog about Win32 and .NET http://blog.kalmbachnet.de/