vote up 3 vote down star

I have a function in a native DLL defined as follows:

#include <string>
void SetPath(string path);

I tried to put this in Microsoft's P/Invoke Interop Assistant, but it chokes on the "string" class (which I think is from MFC?).

I have tried marshaling it as a variety of different types (C# String, char[], byte[]) but every time I either get a NotSupportedException or a Native Assembly Exception (depending on what marshaling I tried).

As anyone ever done Native/Managed Interop where the native string class is used? Is there any way to Marshal this? Am I going to have to write my own Marshaler?

flag

Great question; I was surprised it doesn't automagically work. msdn.microsoft.com/en-us/library/… – Richard Morgan Oct 1 '08 at 17:36
I was surprised too... there's no major reason it shouldn't...but it seems that STL is not going to work with it... Also...I would just change the function to use WCHAR, but it's not a DLL I can change. – Adam Haile Oct 1 '08 at 17:48

2 Answers

vote up 5 vote down check

Looks like you're trying to use the C++ standard library string class. I doubt that will be easy to Marshal. Better to stick with a char * and Marshal as StringBuilder. That's what I usually do. You'll have to add a wrapper that generates the C++ string for you.

link|flag
I was afraid of that...figures – Adam Haile Oct 1 '08 at 17:13
vote up 0 vote down

The PInvoke interop assistant only supports C not C++. Unfortunately the MFC String class (CString I believe?) is C++ and won't work through the assistant. Instead try using the following

void SetPath(__in const WCHAR* path);
link|flag

Your Answer

Get an OpenID
or

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