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.
我在 VC++ 和 Visual Studio 2005 中创建了一个 dll,现在我想在我的 C# 应用程序和 VS2010 中添加相同的 dll。
但每当我尝试时,它都会给我错误“无法添加对“../name.dll”的引用,请确保该文件可访问并且它是有效的程序集或 com 组件”
似乎 C++ dll 是本机 dll(而不是托管C++/CLI)
您需要查看 P/Invoke。
平台调用教程 DLL 导入