Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to pass a string from C# to C++, using platform invoke.

  • C++ code:

    #include<string>
    using namespace std;
    
    extern "C" 
    {
         double __declspec(dllexport) Add(double a, double b)
         {
             return a + b;
         }
         string __declspec(dllexport) ToUpper(string s)
         {
             string tmp = s;
             for(string::iterator it = tmp.begin();it != tmp.end();it++)
                 (*it)-=32;
             return tmp;
         }
    }
    
  • C# code:

    [DllImport("TestDll.dll", CharSet = CharSet.Ansi, CallingConvention =CallingConvention.Cdecl)]
    public static extern string ToUpper(string s); 
    
    static void Main(string[] args)
    {
        string s = "hello";
        Console.WriteLine(Add(a,b));
        Console.WriteLine(ToUpper(s));
    }
    

I receive a SEHException. Is it impossible to use std::string like this? Should I use char* instead ?

share|improve this question

1 Answer

up vote 1 down vote accepted

I suggest to use char*. Here a possible solution.

If you create another C# function ToUpper_2 as follows

C# side:

[DllImport("TestDll.dll"), CallingConvention = CallingConvention.Cdecl]
private static extern IntPtr ToUpper(string s);

public static string ToUpper_2(string s) 
{
    return Marshal.PtrToStringAnsi(ToUpper(string s));
}

C++ side:

#include <algorithm>
#include <string>

extern "C" __declspec(dllexport) const char* ToUpper(char* s) 
{
    string tmp(s);

    // your code for a string applied to tmp

    return tmp.c_str();
}

you are done!

share|improve this answer
Sorry for slow reply, but I copied your code into my project and have some weird syntax error ?? – Husky Nov 22 '12 at 15:33
It work now but the string still remain the same after call that functions.Why does that happen ? – Husky Nov 22 '12 at 15:44
That's my mistake.It works now but the output string is not as I expected.I think it should be the uppercase of the original string ? – Husky Nov 22 '12 at 15:51
Don't know how but I get this error:cannot convert from 'const char (__thiscall std::basic_string<_Elem,_Traits,_Alloc>:: )(void) throw() const' to 'char *'.Btw are you sure about tmp.c_str(), I use VC++ 2012 and it give me syntax error and change it to tmp.c_str instead. – Husky Nov 22 '12 at 16:07
@Husky edited again! – 888 Nov 22 '12 at 16:09
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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