AGS.Plugin.Lua.InvokeLua.lua_isnoneornil C# (CSharp) Метод

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

public static lua_isnoneornil ( IntPtr L, int n ) : bool
L System.IntPtr
n int
Результат bool
        public static bool lua_isnoneornil(lua_State L, int n)
        {
            return (lua_type(L, n) <= 0);
        }
InvokeLua