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.
SAFEARRAYisn't just a normal array. It's this: msdn.microsoft.com/en-us/library/windows/desktop/… – Polynomial Nov 21 '11 at 16:43string[]andlong[]as parameters, while your C# code seems to be passing astring[]andint[]parameters, respectively. Try passing the correct parameters and see if that fixes it. – Tejs Nov 21 '11 at 16:44