如何在 C#(单声道)中导入 C 库(.dll / .so)
所以我尝试了来自的教程 http://www.huronbox.com/~james/techdemos/cs-callback .html
我一遍又一遍地遇到相同的错误
像我发现的其他一些一样,但是当涉及到从导入的库访问函数时, 我收到 dllNotFoundException
任何人都可以帮忙吗?
此致
so i tried the tutorial from
http://www.huronbox.com/~james/techdemos/cs-callback.html
like some others i found but i am getting the same error over and over
when it comes to access a function from the imported library
i get the dllNotFoundException
anyone can help?
best regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请发布更多详细信息:代码片段和库文件的名称将非常有用。
当我尝试使用斜杠而不是(双)反斜杠(Windows 约定)指定文件路径时,我遇到了类似的问题。接下来:请记住,您的程序会在 exe 所在的同一目录中查找库文件(如果您没有明确指定路径)。
Please post more details: fragment of code and name of the library file would be very useful.
I had similar problem when I tried to specify file path using slashes instead of (double) backslashes (windows convention). Next thing: remember that your program looks for the library file in the same directory where the exe is (if you don't specify the path explicitly).