gpt4 book ai didi

c# - char* 到 C# 中的字符串

转载 作者:太空狗 更新时间:2023-10-29 18:12:27 26 4
gpt4 key购买 nike

我从返回 char* 指针的 native DLL 调用函数,如何将返回的指针转换为字符串?我试过了:

char* c = function();
string s = new string(c);

但它只是返回了一个奇怪的汉字,这不是 c 的正确值。

最佳答案

也许 native DLL 实际上返回的是 ANSI 字符串而不是 Unicode 字符串。在这种情况下,调用 Marshal.PtrToStringAnsi:

using System.Runtime.InteropServices;
...
string s = Marshal.PtrToStringAnsi((IntPtr)c);

关于c# - char* 到 C# 中的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9041094/

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