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

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

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