vote up 4 vote down star
1

Is it possible to build a .NET assembly callable from a native assembly writing in C# alone without using COM?

flag

3 Answers

vote up 2 vote down check

No, you need to use managed c++

link|flag
1  
Or a wrapper written in managed C++. – divo Aug 7 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#. – consultutah Aug 7 at 16:34
vote up 2 vote down

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|flag
Thank you for the article. It is helpful. – beef Aug 10 at 17:45
vote up 1 vote down

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|flag
Because I am not familiar with COM and will do everything I can to avoid learning it :) – beef Aug 7 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/… – wcoenen Sep 5 at 1:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.