Is it possible to pass a string array from managed C# to an unmanaged function using P-Invoke?

This works fine:

[DllImport("LibraryName.dll")]
private static extern void Function_Name(string message);

While this:

[DllImport("LibraryName.dll")]
private static extern void Function_Name(string[] message);

fails with

Unhandled exception: System.NotSupportedException: NotSupportedException

I have tried using MarshalAs with no luck ([MarshalAs(UnmanagedType.LPArray, ArraySubType=UnmanagedType.LPWStr)] String[] dataToLoadArr)

Is it possible to pass string arrays this way?

link|improve this question
What's the message on the exception? Also, what is the declaration of the unmanaged function? – casperOne Sep 27 '11 at 13:52
2  
is this helpful? – mtijn Sep 27 '11 at 14:37
Thanks, mtijn, that helped. Solved by using IntPtr structures representing the strings to be marshaled. – Luuseens Sep 27 '11 at 15:01
This works fine when I try it, no manual marshaling required. There is a nasty flaw in the approach though, the native code has no way to tell how large the array is. An extra argument is required. – Hans Passant Sep 27 '11 at 15:27
What version of Windows are you using? Is this Windows CE or something like that? – Laurion Burchall Sep 27 '11 at 16:14
show 2 more comments
feedback

1 Answer

[DllImport(Library)]
private static extern IntPtr clCreateProgramWithSource(Context context,
                                                       cl_uint count,
                                                       [In] [MarshalAs(UnmanagedType.LPArray, ArraySubType = UnmanagedType.LPStr, SizeParamIndex = 1)] string[] strings,
                                                       [In] [MarshalAs(UnmanagedType.LPArray, ArraySubType = UnmanagedType.SysUInt, SizeParamIndex = 1)] IntPtr[] lengths,
                                                       out ErrorCode errcodeRet);
public static Program CreateProgramWithSource(Context context,
                                                 cl_uint count,
                                                 string[] strings,
                                                 IntPtr[] lengths,
                                                 out ErrorCode errcodeRet)

This works fine in my OpenCL library, OpenCL.NET (http://openclnet.codeplex.com/SourceControl/changeset/view/94246#1251571). Note that I am passing in the count using SizeParamIndex as well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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