Tao.Lua.Lua.luaL_checkint C# (CSharp) Method

luaL_checkint() public static method

Checks whether the function argument narg is a number and returns this number cast to an int.
public static luaL_checkint ( lua_State L, int n ) : int
L lua_State
n int
return int
        public static int luaL_checkint(lua_State L, int n)
        {
            return luaL_checkinteger(L, n);
        }
Lua