static lib run as native code?

B

Bill

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

Jochen Kalmbach

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/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top