Is it possible to download .net dll from Lua code?

I know how to load the C library from Lua:

 -- Lua
 require("your_dll_name");

 // C
 extern "C" __declspec(dllexport) LUALIB_API int luaopen_your_dll_name(lua_State *L) {...}

But is it possible to download .net libraries from Lua?

+5
source share
1 answer

LuaInterface is a library for integrating between the Lua language and the .NET Framework Common Language Runtime (CLR). Lua scripts can use it to create CLR objects, access properties, call methods, and even handle events using Lua functions.

+2
source

All Articles