Insert

<LuaTable>:Insert(object)

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

Esempio 166. Esempio Insert [C#]

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