I am using Pinvoke for Interoperability between Native(C++) code and Managed(C#) code. What i want to achieve is get some text from native code into my managed code. For this i try lot lot of things,e.g passing string/stringbuilder by ref, using [IN] and [OUT], Marshaling to LPSTR, returning string from function etc. but nothing works in my case. Any help with some small code would be highly appreciated.
|
I'd do it with a With a C++
C#
There is one minor drawback of the To overcome this you can wrap up the conversion from
That's the hardest one out of the way, and now it's easy to add other wrappers to convert to |
|||||||||||
|
|
Here is a topic were string marshaling has been discussed. It's need to mark parameter with attribute
|
|||
|
|
|
Here is an example of doing this through C#. I am calling Native function
|
|||
|
|