LuaScriptContext.NewTable Method
Creates a new empty table structure.

NewTable()
Parameters
Remarks
After this function has been executed then the new table will be at top of the stack.
Dim i as Integer
lua.NewTable()
for i = 1 to 5
lua.Push(i)
lua.Push("Some cell text: " + Str(i * i))
lua.SetTableValue()
next
lua.SetGlobal("foo")
See Also
LuaScriptContext Class