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?

link|improve this question

71% accept rate
Great question; I was surprised it doesn't automagically work. msdn.microsoft.com/en-us/library/1b4az623.aspx – 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
feedback

2 Answers

up vote 5 down vote accepted

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|improve this answer
I was afraid of that...figures – Adam Haile Oct 1 '08 at 17:13
feedback

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|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.