Calling c# DLL from borland c++ 5.0

  • Thread starter Thread starter AP
  • Start date Start date
A

AP

Hi,

Is there anyway to call a DLL developed in c# from a borland c++ 5.0
application? Is there anyway to do this without having to have the .NET
framework installed (compile C# to native library?).

Thanks,

Adam
 
Adam,

You will not be able to do either of these things. Basically, you can
export your .NET types as COM types, and then access them in your unmanaged
code. However, you must have the framework installed in order for any COM
types that you expose to work (it still calls into managed code, it just has
an unmanaged code interface).

Hope this helps.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top