无法找到 dll 中方法的入口点?
嗨,我有一堂课,我在其中写了一些方法。然后我为该类创建了 dll。现在我注释掉了一些方法,然后再次为该类创建了 dll。但是现在,当我在其中一个 exe 中加载 dll 时,会弹出这样的错误:“无法在 xyz dll 中找到 abc 方法的入口点”。
Hi I have a class and I wrote few methods in it. Then I created dll for that class. Now i commented out few methods and then again created dll for the class. But now when i am loading the dll in one of the exe I get the error poped out like this,"NOt able to locate entry point for abc method in xyz dll".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你重新编译exe了吗?
如果没有,请重新编译它,因为 DLL API 中发生了一些变化。
如果是,那么您可能正在链接旧的 LIB 文件而不是新的 LIB 文件,并且 DLL API 中的某些内容已发生更改。
Did you recompile the exe?
If not, then please, recompile it, because something has changed in the DLL API.
If yes, then you probably are linking with the old LIB file instead of the new one, and something has changed in the DLL API.