lua.net

Lua for configuration over XML/Yaml/INI in .NET?

I have used XML, INI and yaml files for configuration in the Python as well as in .NET C# application. I have recently studied the lua language and tried its implementation in .NET platform. I find Lua for configuration seems to be more clean and readable. Moreover it does provide the scripting ability. Since I heard that Lua source b...

How to call Lua functions from .NET

I use the LuaInterface library to run the lua in .net and it works fine. I could access the CLR via lua. But how to call Lua function from C#? ...