如何在 Visual-C 中从 C# 接收字符串基于.net DLL?

发布于 2024-09-15 06:32:44 字数 457 浏览 4 评论 0原文

如何在基于 Visual-C++ 的 .net DLL 中从 C# 接收字符串?

在 C++ 中(使用 clr),我有以下代码:

#include "stdafx.h"
##include <Windows.h>
#include <string>
#include <windows.h>

namespace NSST
{
  public ref class Wrapper
  {
 public:
     Wrapper() {}
    static void init_1(std::string a, std::string b){}
     static void init_2(){}
  };
};

但在 .net C# 中,我只看到一个函数 init_2。如何使 init_1 在 .net 中可见?

How to receive strings from C# in Visual-C++ based .net DLL?

In C++ (using clr) I have this code:

#include "stdafx.h"
##include <Windows.h>
#include <string>
#include <windows.h>

namespace NSST
{
  public ref class Wrapper
  {
 public:
     Wrapper() {}
    static void init_1(std::string a, std::string b){}
     static void init_2(){}
  };
};

But in .net C# I see only one function init_2. How do I make init_1 visible in .net?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小情绪 2024-09-22 06:32:44

您不能使用 std::string,您应该使用 System::String^:

static void init_1(System::String^ a, System::String^ b);

You can't use std::string, you should use System::String^:

static void init_1(System::String^ a, System::String^ b);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文