Marshalling reference-types from C++ to C# - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T10:40:45Zhttp://stackoverflow.com/feeds/question/787448http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/787448/marshalling-reference-types-from-c-to-c1Marshalling reference-types from C++ to C#Gili2009-04-24T20:23:47Z2009-04-24T21:44:08Z
<p>I want to invoke the following C++ function (exported by a DLL) from C#:</p>
<pre><code>void createVm(
const jace::VmLoader& loader,
const jace::OptionList& options,
bool ignoreUnrecognized = true );
</code></pre>
<p>I've found documentation for marshaling primitives from C++ to C# but I'm not sure how to handle reference-types or non-pritmive types such as VmLoader or OptionList (both of which are classes). I'm trying to wrap a C++ API with a C# layer, delegating to the underlying C++ code for the actual method implementation.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/787448/marshalling-reference-types-from-c-to-c/787467#7874674Answer by JaredPar for Marshalling reference-types from C++ to C#JaredPar2009-04-24T20:29:00Z2009-04-24T20:29:00Z<p>AFAIK, PInvoking into a function with C++ constructs is not a supported operation. You could probably get it to work but I think you'll find problems.</p>
<p>What is supported is writing a simple C wrapper function which calls into your C++ function. PInvoke into the wrapper function instead and that will do the trick. </p>
http://stackoverflow.com/questions/787448/marshalling-reference-types-from-c-to-c/787685#7876850Answer by nichow for Marshalling reference-types from C++ to C#nichow2009-04-24T21:44:08Z2009-04-24T21:44:08Z<p>Assuming the c++ DLL correctly exports the types being passed by reference, you could right a light weight managed C++ wrapper that calls the dll. With managed c++ you can call native C/C++ libs and dlls directly while still exporting a managed interface from the resulting assemblies. Other .Net languages can call the managed interface just like they would any other assembly. It's a bit of extra overhead, but's is can be the quickest way to get it done.</p>