Tao.Lua.Lua.lua_isnone C# (CSharp) Méthode

lua_isnone() public static méthode

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