将字符串转换为“LuaFunction”类型
我正在 .net 中使用 LuaInterface 来处理我正在进行的一个大型项目。是否可以将字符串直接转换为 LuaFunction(类似于 LoadString() 的工作原理?)。
I'm using the LuaInterface in .net for a large project I'm working on. Is it possible to convert a string straight into a LuaFunction (similar to how LoadString() works?).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
LuaInterface有
LoadString
,这就是如何将lua源代码解析为LuaFunction
,然后可以使用Call
方法来执行该函数。LuaInterface has
LoadString
, that is how you get lua source code parsed into aLuaFunction
, you can then use theCall
method to execute the function.