up vote 5 down vote favorite
1
share [g+] share [fb]

Can a native DLL call a .NET DLL?

link|improve this question
feedback

3 Answers

up vote 3 down vote accepted

No, you need to use managed c++

link|improve this answer
1  
Or a wrapper written in managed C++. – 0xA3 Aug 7 '09 at 15:54
Exactly. What we do is create a thin wrapper with standard extern "C" exports in Managed C++, then write the real code in C#. – ChatVoting.com Aug 7 '09 at 16:34
feedback

You need something to make the managed world and the unmanaged world work together. If you don't want to use COM, you can create wrapper classes in C++/CLI.

Here is an article that can get you started: .NET to C++ Bridge.

link|improve this answer
Thank you for the article. It is helpful. – Drone 605 Aug 10 '09 at 17:45
feedback

Without using COM, you have to write a C++/CLI wrapper. Your native code that includes the header file of your wrapper needs to be compiled with /clr (common language runtime support).

Just for curiosity, why not using COM interop? Check out the regasm.exe and tlbexp.exe tools.

link|improve this answer
Because I am not familiar with COM and will do everything I can to avoid learning it :) – Drone 605 Aug 7 '09 at 21:24
1  
COM also suffers from the nasty DLL hell problem due to global registration. It's possible to do registration-free COM but the documentation is confusing and there are bugs stackoverflow.com/questions/617253/… – Wim Coenen Sep 5 '09 at 1:46
feedback

Your Answer

 
or
required, but never shown