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.
我想在visual c#中创建一个dll,并在win32程序(visual c++)中使用它。据我了解,为了在 Visual C++ 中添加 dll 文件,我还需要 .h 文件和 .lib 文件,但是当我在 Visual c# 中创建类库时,我只得到 dll 文件。 是否可以在 Visual c# 中创建 .h 文件和 .lib 文件?
不,这是不可能的。但是,您可以通过以下方式在 C++ 中使用 C# 库:
这个话题也很有趣!
您可以使用LoadLibrary和GetProcAddress动态加载 DLL,而无需创建您引用的文件。你可以在这里阅读更多。