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

lua_islightuserdata() public static method

Returns 1 if the value at the given acceptable index is a light userdata, and 0 otherwise.
public static lua_islightuserdata ( lua_State L, int n ) : bool
L lua_State
n int
return bool
        public static bool lua_islightuserdata(lua_State L, int n)
        {
            return lua_type(L, n) == LUA_TLIGHTUSERDATA;
        }
Lua