I want to call c++ function from dll. Is it possible to use something like DllImport from C# in IronRuby?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

There is no option to do that directly from IronRuby at the moment. You will need to wrap the C++ library with a C# assembly (using P/Invoke) and then use the C# assembly from IronRuby.

link|improve this answer
another option is a wrapper using C++/CLI. For automatically generated P/Invoke wrapper see swig.org – Tobias Langner Feb 22 '11 at 13:32
feedback

Your Answer

 
or
required, but never shown

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