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) bstrColumnTitles, 
[in,out] SAFEARRAY(long) lColumnPos );

I have tried to pass a ref to a fixed-size array ((Array)string[6]) and to a List.ToArray(), but it keeps crashing on me. E.g.

Array arr1 = (Array) new string[500];
Array arr2 = (Array) new int[500];
table.GetTableInfo(filename, ref arr1, ref arr2);

To be more specific: I already tried any value for the size (the correct one should be 44). Tried the same for the capacity of a List<>, but that didn't help either. I also tried different types, but it does not accept any other than int.

I don't know why it keeps crashing on me with a general error of that COM component (basically indicating that something is wrong, yet not saying what exactly), since I can confirm that the following VB code works:

Dim TitleList() As String
Dim PositionList() As Long 
Call objTable.GetTableInfo(txTableFile.Text, TitleList, PositionList)

Does anyone have a clue on why this happens? Or alternatively, can anyone provide me a port of that VB code to C#? I have tried to google for tutorials, but all they say is "only fixed size arrays are allowed". I wonder how that code works then, as no size is specified.

Thx i.a.

link|improve this question
SAFEARRAY isn't just a normal array. It's this: msdn.microsoft.com/en-us/library/windows/desktop/… – Polynomial Nov 21 '11 at 16:43
1  
You are not passing the same types compared to your VB and C# code. The VB seems to be passing a string[] and long[] as parameters, while your C# code seems to be passing a string[] and int[] parameters, respectively. Try passing the correct parameters and see if that fixes it. – Tejs Nov 21 '11 at 16:44
@Polynomial: So do I have to manually build that struct and cast the ref param to that struct type? – Franz B. Nov 21 '11 at 17:08
@FranzB. - Yeah, it's quite likely that you'll have to do that. – Polynomial Nov 21 '11 at 17:09
@Tejs: See above. I tried to use other types such as long, but then it tells me during runtime that a wrong type was specified. Only int seems to work. – Franz B. Nov 21 '11 at 17:09
show 3 more comments
feedback

1 Answer

up vote 1 down vote accepted

Have you read Default Marshaling for Arrays? As far as I can tell this should "just work" as long as you use the MarshalAs attribute on the PInvoke declaration to indicate that the array should be marshalled as a safe array.

As far as I can tell the correct PInvoke declaration should be something along the lines

public static string extern GetTableInfo(
    string tableName,
    [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType=VT_BSTR)]
    ref string[] columnTitles,
    [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType=VT_I8)]
    ref long[] columnPos
);

Can you show us what your PInvoke declaration looks like?

link|improve this answer
I wish it would just work :) I am not sure where to get the PInvoke declaration you are referring to. The only thing I can see is the signature of the method in the object browser of Visual Studio. That one just says... $ GetTableInfo(string, ref System.Array, ref System.Array) $ – Franz B. Nov 21 '11 at 17:11
@FranzB. Thats the PInvoke declaration I was talking about - try modifying it to match the one I have shown. – Justin Nov 21 '11 at 17:14
I do not know how to modify it. It is included in a third-party COM component of which I do not have the code. If there is an option to alter that declaration, where can I find it? – Franz B. Nov 21 '11 at 17:18
That's the C# declaration in your code (or interop generated code) so that C# knows how to call the 3rd party COM component. – Chris Chilvers Nov 21 '11 at 17:21
Looks like I should really find that easily, yet I have a hard time grasping what you mean. I included the COM component as a Reference into the project and can access its classes and methods like any other package (such as System.Collections). How would I be able to find that generated code? – Franz B. Nov 21 '11 at 17:43
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.