Send C++ string to C# string. Interop

后端 未结 3 877
眼角桃花
眼角桃花 2021-02-06 18:36

I am new to inter process communication and need some help. I want to be able to send a string from a C++ program to a C# program. My problem is that the resultant string is g

3条回答
  •  萌比男神i
    2021-02-06 19:31

    You'll have to convert your character array from ASCII to Unicode somehow. Here is a page that may help do it from the C# side.

提交回复
热议问题