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

lua_isnone() public static method

public static lua_isnone ( lua_State L, int n ) : bool
L lua_State
n int
return bool
        public static bool lua_isnone(lua_State L, int n)
        {
            return lua_type(L, n) == LUA_TNONE;
        }
Lua