LuaInterface.LuaDLL.lua_xmove C# (CSharp) Méthode

lua_xmove() private méthode

private lua_xmove ( IntPtr from, IntPtr to, int n ) : void
from IntPtr
to IntPtr
n int
Résultat void
        public static extern void lua_xmove(IntPtr from, IntPtr to, int n);

Usage Example

 public void LuaXMove(IntPtr to, int n)
 {
     LuaDLL.lua_xmove(L, to, n);
 }
LuaDLL