Tagged Questions
6
votes
1answer
289 views
Release SAFEARRAY from c++ DLL and c#
I have a c++ function that gets data and I called it from c#. The function gets a pointer to SAFEARRAY and poplate it with strings (using SysAllocString)
Everything is ok, but the program is leaking ...
2
votes
1answer
788 views
How to create a SafeArray C#?
I need to create a SafeArray to pass to a COM method.
How do I create/maintain/destroy a SafeArray in C#?
I have never came across SafeArrays before and could not find much with a quick google ...
1
vote
2answers
404 views
Pass multidimensional (safe)array from C# to COM
I have a COM object that takes a 0 bounded safearray of two dimensions. I need to pass this array into my C++ COM object. I can pass the VB6 multidim arrays into the C++ side without a problem, but I ...
1
vote
2answers
1k views
Properly accessing a SafeArray of VT_UNKNOWN with SafeArrayGetElement
We have a COM component who’s implementation and interface definition exist in managed code but is driven by a native component. The managed component is returning a SafeArray back to the native code ...