Tao.Lua SDK Documentation

Lua.lua_xmove Method 

Exchange values between different threads of the same global state.

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

Parameters

from
to
n

Remarks

This function pops n values from the stack from, and pushes them onto the stack to.

See Also

Lua Class | Tao.Lua Namespace