Click here to Skip to main content
16,017,333 members

Comments by CP@work (Top 2 by date)

CP@work 10-Mar-11 5:39am View    
Statically linked means that I have linked the runtime library with /MT instead /MD option. I have to prevent to be dependent of an external msvcXXX.dll. It does not mean that my dll is statically linked to the app.

As using a C++/CLI would also reference the runtime library as /MD, I would be depending to an external dll with all implications. This is not an option. That means "must-have"...
CP@work 10-Mar-11 5:05am View    
Thank you for your answer.

Of course, with C++/CLI, I could exactly implement what I intend to do, but it is not an option for my project, unfortunately.
The C++ dll is the bootstrapper for my managed appdomain, it's statically linked and has no references to mscoree (latebound via GetProcAddress).
As far as I know, with using C++/CLI, I loose these "must-have features" for my project.