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