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

lua_isnoneornil() public static method

public static lua_isnoneornil ( lua_State L, int n ) : bool
L lua_State
n int
return bool
        public static bool lua_isnoneornil(lua_State L, int n)
        {
            return lua_type(L, n) <= 0;
        }
Lua