LuaInterface.LuaStatePtr.lua_istable C# (CSharp) Method

lua_istable() public method

public lua_istable ( int n ) : bool
n int
return bool
        public bool lua_istable(int n)
        {
            return LuaDLL.lua_type(L, n) == LuaTypes.LUA_TTABLE;
        }