Tagged Questions
6
votes
1answer
251 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
220 views
COM SAFEARRAY of GUID's returned from c++ to c#
I'm currently running into an issue of needing to pass a SAFEARRAY(GUID) as a return value from c++ to c#
Currently the c# side is using an interop dll generated from tlbimp
The idl is:
HRESULT ...
2
votes
1answer
691 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
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, ...
1
vote
1answer
70 views
Initializing a SAFEARRAY ref in C# (port from VB?)
I am working with a third-party COM component (i.e. do not have its code). The method in question has the following outline:
HRESULT GetTableInfo(
[in] BSTR bstrTableName,
[in,out] SAFEARRAY(BSTR) ...
1
vote
2answers
127 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
393 views
.Net Compact Framework - Calling ActiveX Object that uses [out] SAFEARRAY(float) *
In the Compact Framework 3.5, I am attempting to call an ActiveX object that has an IDL function signature:
HRESULT MyFunc([out] SAFEARRAY(float) *var)
The Interop generation creates the msil
...
1
vote
1answer
1k views
How to create and initialize SAFEARRAY of doubles in C++ to pass to C#
My C# method needs to be invoked from C++
Originally my C# method takes a parameter of type double[], but when calling from C++ it becomes a SAFEARRAY
In C++ I need to take data from an array of ...
1
vote
2answers
391 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
1answer
710 views
How to pass SAFEARRAY of UDTs to unmaged code from C#
I also used VT_RECORD.
But didn't got success in passing safearray of UDTs.
[ComVisible(true)]
[StructLayout(LayoutKind.Sequential)]
public class MY_CLASS
{
...
1
vote
2answers
992 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 ...
0
votes
4answers
824 views
trouble using unmanaged c++ from c# using dllimport
i am having trouble importing c++ unmanaged dll into C# [winform]. Can someone help?
Basically i am just trying to create a safearray of strings in c++ and trying to send it to C#.
Here is my c++ ...
0
votes
1answer
504 views
How to call a .NET COM method with an array from delphi using PSafeArray?
I have an .NET (4.0) interface which is implemented with a ServicedComponent COM+ class:
interface DotNetIface
{
void MethodRef(var System.Guid guid);
void MethodArray(System.Guid[] guids, ...