Insert

<LuaTable>:Insert(object)

Permette di aggiungere un elemento ad una LuaTable come lista. L'elemento viene accodato alla lista.

Esempio Insert [C#]

LuaTable tbl = new LuaTable();
tbl.Insert("pippo");
tbl.Insert(45);