Tagged Questions
2
votes
1answer
2k views
Passing a Safearray of custom types from C++ to C#
how can one use a Safearray to pass an array of custom types (a class containing only properties) from C++ to C#? Is using the VT_RECORD type the right way to do it?
I am trying in the following way, ...