我正在用c#编写一个应用程序,它使用我在c中使用pinvoke编写的dll。 这是dll的代码:
__declspec(dllexport) char** foo()
{
int i;
char arr[5]="omer";
char **str_arr=(char**)malloc(sizeof(char*));
str_arr[0]=(char*)malloc(sizeof(char)*5);
strcpy(str_arr[0],arr);
return str_arr;
}
以下是c#中的代码:
class Program
{
[DllImport("gg.dll", CallingConvention = CallingConvention.Cdecl)]
public static unsafe extern char** foo();
static unsafe void Main(string[] args)
{
int [] arr;
int i;
char [] char_arr={'o','m','e','r'};
string[] string_arr=new string [1];
char** str_arr;
str_arr=foo();
for (i = 0; i < 4; i++)
{
char_arr[i]=str_arr[0][i];
}
string_arr[0] = new string(st);
free(*str_arr);
free(str_arr);
}
}
现在当指针返回时,第一个字符数组的内容是乱码(中文字符)而不是“omer”为什么会这样?
我认为可能是因为c#中的char数组可能使用unicode编码,但是当我在调用函数foo之后更改它之前测试char_arr中内容的值时,它表示ASCII中的字母