Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 IKVM 从 JAR 文件生成了一个 DLL:
ikvmc -target:library mylib.jar
我想在 Visual C++ 项目中使用 DLL。从我自己的代码中调用 dll 函数需要哪些步骤?我如何知道 DLL 导出了哪些方法以及如何在没有头文件的情况下调用它们?
IKVM.NET 是为 .NET 框架 2.0 编写的。在 Visual Studio C++ 项目中的使用可能很困难。但是应该可以通过 COM 接口访问它。看看这个答案。