Tao.Lua.Lua.lua_isnil C# (CSharp) 메소드

lua_isnil() 공개 정적인 메소드

Returns 1 if the value at the given acceptable index is nil, and 0 otherwise.
public static lua_isnil ( lua_State L, int n ) : bool
L lua_State
n int
리턴 bool
        public static bool lua_isnil(lua_State L, int n)
        {
            return lua_type(L, n) == LUA_TNIL;
        }
Lua