我将 LuaInterface 导入到控制台项目中,引用它,并编写了一个小测试脚本。当我运行它时,我得到这个:

Could not load file or assembly 'LuaInterface, Version=2.0.0.16708, Culture=neutral, PublicKeyToken=null' or one of its dependencies. An attempt was made to load a program with an incorrect format.

原谅我是个新手什么的,但我不明白这是什么意思。我应该做些什么?

最佳答案

您是否在 64 位操作系统上运行?

如果是,那么您需要获得 LuaInterface 的 x64 版本或将控制台项目的平台目标设置为 x86。

您可以在此处阅读平台目标选项:
http://visualstudiohacks.com/articles/visual-studio-net-platform-target-explained/

关于c# - 尝试使用 LuaInterface 时出现 BadImageFormatException,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1340265/

10-11 13:08