要在C++中调用C#的DLL文件,您可以使用C++/CLI(C++ Common Language Infrastructure)作为桥梁。C++/CLI允许您在C++代码中直接调用.NET Framework的组件。以下是调用C# DLL的步骤:
MyCSharpLibrary
的DLL,其中包含一个名为MyClass
的类和一个名为MyMethod
的方法。// MyCSharpLibrary.cs
using System;
namespace MyCSharpLibrary
{
public class MyClass
{
public string MyMethod(string input)
{
return input.ToUpper();
}
}
}
编译C# DLL并将其添加到C++项目中。在Visual Studio中,右键单击C++项目,选择“添加引用”,然后浏览到C# DLL并添加它。
创建一个C++/CLI包装器类来调用C# DLL中的方法。在C++项目中创建一个新的类,例如MyCppWrapper
,并添加以下代码:
// MyCppWrapper.h
#pragma once
#include <msclr/auto_gcroot.h>
#include "MyCSharpLibrary.h"
namespace MyCppWrapper
{
public ref class MyWrapper
{
public:
std::string CallMyMethod(std::string input)
{
msclr::auto_gcroot<MyCSharpLibrary::MyClass^> myClass = gcnew MyCSharpLibrary::MyClass();
return myClass->MyMethod(input);
}
};
}
MyCppWrapper
类调用C# DLL中的方法。例如,在main.cpp
中添加以下代码:// main.cpp
#include <iostream>
#include "MyCppWrapper.h"
int main(array<System::String ^> ^args)
{
MyCppWrapper::MyWrapper^ myWrapper = gcnew MyCppWrapper::MyWrapper();
std::string input = "Hello, World!";
std::string output = myWrapper->CallMyMethod(input);
std::cout << "Input: " << input << std::endl;
std::cout << "Output: " << output << std::endl;
return 0;
}
注意:在C++/CLI中,我们使用msclr::auto_gcroot
来管理C#对象的内存。这是因为C++/CLI是一种混合了原生C++和.NET Framework的编程语言,它需要使用托管类型和非托管类型之间的互操作性。