WinterSync.LuaValue.Push C# (CSharp) Method

Push() public abstract method

public abstract Push ( IntPtr L ) : void
L System.IntPtr
return void
        public abstract void Push(IntPtr L);

Usage Example

Example #1
0
 /// <summary>
 /// expects table on top
 /// </summary>
 public static void SetField(IntPtr L, LuaValue key, LuaValue value)
 {
     Check(L, -1);
     key.Push(L);
     value.Push(L);
     Lua.lua_settable(L, -3);
 }
All Usage Examples Of WinterSync.LuaValue::Push