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

lua_concat() private méthode

private lua_concat ( IntPtr luaState, int n ) : void
luaState System.IntPtr
n int
Résultat void
        public static extern void lua_concat(IntPtr luaState, int n);

Usage Example

Exemple #1
0
 public static void luaL_error(IntPtr luaState, string message)
 {
     LuaDLL.luaL_where(luaState, 1);
     LuaDLL.lua_pushstring(luaState, message);
     LuaDLL.lua_concat(luaState, 2);
     LuaDLL.lua_error(luaState);
 }
All Usage Examples Of LuaInterface.LuaDLL::lua_concat
LuaDLL