gpt4 book ai didi

c# - 将非托管 char** 编码(marshal)到托管字符串 []

转载 作者:行者123 更新时间:2023-11-30 02:10:07 31 4
gpt4 key购买 nike

我在 DLL 文件中有一个 C++ 函数(它是使用多字节字符集选项编译的):

_declspec(dllexport) void TestArray(char** OutBuff,int Count,int MaxLength)
{
for(int i=0;i<Count;i++)
{
char buff[25];
_itoa(i,buff,10);

strncpy(OutBuff[i],buff,MaxLength);
}
}

我想 C# 原型(prototype)一定是下一个:

    [DllImport("StringsScetch.dll", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)]
private static extern void TestArray([MarshalAs(UnmanagedType.LPArray)] IntPtr[] OutBuff, int Count, int MaxLength);

但是我应该准备 IntPtr 对象来接收来自非托管代码的字符串吗?

最佳答案

所以 OutBuff 基本上是一个指针数组 - 所以您需要创建一个 IntPtr 数组,其元素是有效指针 - 即指向有效内存的 IntPtr 值。如下所示:

int count = 10;
int maxLen = 25;
IntPtr[] buffer = new IntPtr[count];

for (int i = 0; i < count; i++)
buffer[i] = Marshal.AllocHGlobal(maxLen);

TestArray(buffer, count, maxLen);

string[] output = new string[count];
for (int i = 0; i < count; i++)
{
output[i] = Marshal.PtrToStringAnsi(buffer[i]);
Marshal.FreeHGlobal(buffer[i]);
}

关于c# - 将非托管 char** 编码(marshal)到托管字符串 [],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4914999/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com