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.
将 [DllImport("my.cool.library")] 与 .NET 一起使用时,您会收到类似于以下内容的错误:
“无法加载 DLL……找不到指定的模块……”
...即使所有必需的 DLL 都已到位并且可以清楚地访问!?
如果名称中没有句点,则 DLLImport 仅假定“.dll”扩展名。如果使用了 DLLImport("my.cool.library.dll"),它将起作用,否则必须将 DLL 重命名为 "my_cool_library.dll",然后 DLLImport("my_cool_library") 才能起作用。;)