gpt4 book ai didi

c# - 从 C++ 库方法返回的 "char*"获取 C# 字符串?

转载 作者:搜寻专家 更新时间:2023-10-31 01:14:53 24 4
gpt4 key购买 nike

我有一个在我的 C# 应用程序中使用的 C++ 库。 C++ 库中的一种方法返回 char *。如何在我的 C# 应用程序中将 char * 转换为字符串?

显然在我的 C# 应用程序中,此方法返回的数据类型是 sbyte * 类型。

最佳答案

Stringa constructor that takes a char* :

char* x = ...
string s = new string(x);

another one that takes a sbyte* :

sbyte* x = ...
string s = new string(x);

关于c# - 从 C++ 库方法返回的 "char*"获取 C# 字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10791284/

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