I am calling an unmanaged C++ dll that expects a char* as one of its parameters and I want to push a byte[] into it. The project is written in VB.NET.
What type of marshalling will work for this?
|
1
|
I am calling an unmanaged C++ dll that expects a char* as one of its parameters and I want to push a byte[] into it. The project is written in VB.NET. What type of marshalling will work for this? |
||
|
|
|
|
In your PInvoke definition just declare the char* parameter as a byte[] and the standard marshaller will handle work. But this may or may not be the best idea. Is the C++ function expecting a string or is it expecting a buffer of data (C/C++ code often uses char* for a buffer, relying on the fact that a char is one byte)? If it is a buffer then a byte[] is certainly correct, but if it expects a string then it may be clearer if you declare the parameter as a string (to be explicit) and use Encoding.ASCII.GetString() to convert the byte[] to a string. Also if it C++ function expects a string and you decide to declare the parameter as a byte[], be sure the byte array ends with a zero, since that is how C/C++ determines the end of the string. |
||
|
|
|
|
If you need to pin a managed structure in order to pass it as a parameter you can use the following code.
You can then call the unmanaged code using PinnedObject.Pointer. In your extern declaration, use IntPtr as the Type for that parameter.
|
||
|
|
|
|
I'm not a .net expert, but I've needed to do something similar recently. It is not just a matter of serialization, you also have to stop the garbage collector from cleaning up your byte array while it is being used in C++ land... The below snippet of C# should help. // pin the byte[] (byteArray) GCHandle handle = GCHandle.Alloc(byteArray, GCHandleType.Pinned); IntPtr address = handle.AddrOfPinnedObject(); // Do your C++ stuff, using the address pointer. // Cleanup handle.Free(); |
||
|
|