Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a fully managed (.NET) Lua interpreter? [closed]

Does anyone know if there is a fully managed (.NET) Lua interpreter? The regular source can be compiled with managed extensions for desktop .NET, but it can't be embedded in a Silverlight application.

like image 942
Paul Avatar asked Jul 07 '11 10:07

Paul


2 Answers

There another project called Lua.Net

Check Aluminum Lua, It is completely written in C#.

like image 96
Sharique Avatar answered Nov 15 '22 04:11

Sharique


I have written a Lua interpreter for .NET

It's a complete rewrite, it uses Irony for parsing and supports most of Lua 5.2 features, even if it lacks debug functions. Also only basic functions are provided, but custom ones can be easily written. http://github.com/frabert/NetLua

like image 37
Francesco Bertolaccini Avatar answered Nov 15 '22 06:11

Francesco Bertolaccini