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

luaL_checklong() public static method

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