Let's say I have written a Class Library (dll) in .Net and now I have developers using it in their .Net applications.
However, the library itself could probably be useful also for developers writing natively (in C or C++). So my question is if my managed dll can be used in C or C++?
If not, why? Maybe I must add some specific code to make it available to native coders?
Thanks.
EDIT: In case anyone else is interested in this issue, I found this article from Google Books which gives an introduction how to use Net.classes from COM.