Tao.Lua.Lua.luaL_checklong C# (CSharp) Метод

luaL_checklong() публичный статический Метод

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
Результат int
        public static int luaL_checklong(lua_State L, int n)
        {
            return luaL_checkinteger(L, n);
        }
Lua