Tagged Questions
2
votes
1answer
795 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 ...
2
votes
1answer
213 views
How can I delete a SAFEARRAY returned from a .NET function in native code?
I'm hosting a .NET library in my C++ program using the following methods, though not an exhaustive list:
CorBindToRuntimeEx()
GetDefaultDomain()
CreateInstance()
GetIDsOfNames()
And eventually a ...
1
vote
2answers
143 views
Passing string arrays from COM to C#
I need to access C# methods in a COM dll via COM-like interface. One of the method requires an array of strings to be passed as input.
Am creating a SAFEARRAY and passing it to the COM Interop. ...
1
vote
1answer
340 views
How to return an array of .NET objects via a COM method
I have a .NET assembly. It happens to be written in C++/CLI. I am exposing a few objects via COM. Everything is working fine, but I cannot for the life of me figure out how to return an array of my ...