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.
在我的项目中,我正在尝试导入 Dll,但在添加引用时,它向我显示了错误。我在很多博客中搜索过,发现我的 DLL 是非托管的。那么请告诉我如何将非托管 DLL 转换为托管 DLL。
如果 .dll 既不是托管程序集也不是 COM 对象,您需要通过使用DllImportAttribute来利用 P/Invoke 。 可以在此处找到流行库的定义。