C++使用 std:string 的 dll 函数

发布于 2024-12-11 19:48:59 字数 770 浏览 0 评论 0原文

可能的重复:
C# 中的 std::string ?
如何调用从 C# 接受 stringstream 类型参数的 C++ DLL 函数?

有没有办法从 c++ std:string 转换为 C# System.String?我正在从 C++ dll 调用一个函数,该函数接受 std:string 作为输入。有没有一种简单的方法可以做到这一点?

C#:

[DllImport(@"MyDLL.dll")]
[return:MarshalAs(UnmanagedType.I1)]
public static extern bool myFunction([In, Out]string input);

C++:

extern "C" __declspec(dllexport) BOOL __stdcall myFunction(const std::string& input)
{
  //Code is here
}

Possible Duplicate:
std::string in C#?
How can I call a function of a C++ DLL that accepts a parameter of type stringstream from C#?

Is there a way to convert from a c++ std:string to C# System.String? I'm calling a function from a C++ dll that takes a std:string as input. Is there a simple way to do this?

C#:

[DllImport(@"MyDLL.dll")]
[return:MarshalAs(UnmanagedType.I1)]
public static extern bool myFunction([In, Out]string input);

C++:

extern "C" __declspec(dllexport) BOOL __stdcall myFunction(const std::string& input)
{
  //Code is here
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文