can a managed dll call from C++

Hi

i made a dll in C# so its managed... my question is can that dll be called from C++ Pascal or other languages



Answer this question

can a managed dll call from C++

  • Nilay

    but can all languages call COMs`


  • Brian Kinder

    how about other languages like Java Cobol PASCAL C C++ FORTRAN


  • renard

    All .NET languages can call COM. The .NET framework deals with all the COM stuff for you.

  • Matt Moore

    You can expose the managed DLL as a COM object and run it from C++ that way.

  • Oscar_Ruiz

    The managed DLL would publish a COM interface, if the language can consume COM interfaces then it can call your managed DLL.

  • can a managed dll call from C++