static lib run as native code?

  • Thread starter Thread starter Bill
  • Start date Start date
B

Bill

If I statically link a library (unmanaged c++) in managed c++, does it run
under native code like calling a DLL?
 
Hi Bill,
If I statically link a library (unmanaged c++) in managed c++, does it
run under native code like calling a DLL?

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/
 
Back
Top