18

I am looking to embed Lua into my C# application and i thought there was a wrapper around the lua API for C#, but don't remember what it is. Can someone point me in it's direction?

RCIX
  • 38,647
  • 50
  • 150
  • 207
  • Multiple results on http://www.google.com/search?q=C%23+lua – Dykam Aug 16 '09 at 07:04
  • 2
    If you are using lua for scripting in C# you may also consider runtime C# code compilation. It's more powerful than lua, easy to implement and deliver the same "non-hardcoded" scripting behavior. – DitherSky Feb 22 '12 at 14:57

1 Answers1

22

I believe LuaInterface is the most popular one for C#. If I'm wrong, I'm sure someone will correct me.

There's a little more information (from Lua's developers) on integrating Lua and .NET, on the Lua website.

Update:
As of April 2013, the primary developer announced that the project was stalling due to other committements, and has pointed new developments to NLua instead.

Chris J
  • 30,688
  • 6
  • 69
  • 111
Mark Rushakoff
  • 249,864
  • 45
  • 407
  • 398