如何导出 C# dll method/functions 以在 C++ 中使用它

How to export C# dll method/functions to use it in C++

我已经用C#完成了我的部分编码,下面给出了一个小方法

 public  static unitdefn GetUnit(XmlDocument doc)
    {

        XmlNodeList nodeList1 = (XmlNodeList)doc.DocumentElement.SelectNodes("//UnitDefinitions/Unit");
        int countdefn = nodeList1.Count;
        unitdefn[] arrunt = new unitdefn[countdefn];
        if (countdefn != 0)
        {

            int i = 0;
            foreach (XmlNode node in nodeList1)
            {
                XmlAttribute att = node.Attributes["name"];
                if (att != null)
                {
                    string idu = node.Attributes["name"].Value;
                    //System.Console.WriteLine(id1);
                    arrunt[i].name = idu;
                }
                i++;
            }

        }
        return arrunt[0];
    }

并且我希望在我的 C++ 项目中使用此方法,并且我已按照以下给出的方式完成

int  xmlRead()
{

int x=1,s=1;
char xmldllpath[1000]="//dllpath";
HMODULE h = LoadLibrary(xmldllpath);

if (!h) {
    printf("error: Could not load %s\n", xmldllpath);
    return 0; // failure
}

getAdr(&s, h, "GetUnit");
}

dll 已成功加载,但未获取该方法 任何具体的方法

不要。不支持从 C# 导出方法。手动编辑发出的程序集几乎是不可能的,但真的 - 不要。

您可以使用一些合适的解决方案:

  • 使用 C++/CLI 项目将托管方法公开给非托管代码
  • 使用 COM(.NET 基本上是 COM 2.0,所以这很容易;在 C++ 端也很容易使用)
  • 在初始化时将委托传递给非托管代码,并在需要时调用它
  • 使用其他一些进程间通信方法(例如命名管道、TCP...)