Tao.Lua SDK Documentation

Lua.lua_concat Method 

Concatenates the n values at the top of the stack, pops them, and leaves the result at the top. If n is 1, the result is the single string on the stack (that is, the function does nothing); if n is 0, the result is the empty string. Concatenation is done following the usual semantics of Lua.

[Visual Basic]
Public Shared Sub lua_concat( _
   ByVal L As IntPtr, _
   ByVal n As Integer _
)
[C#]
public static void lua_concat(
   IntPtr L,
   int n
);

Parameters

L
n

See Also

Lua Class | Tao.Lua Namespace