AGS.Plugin.Lua.InvokeLua.luaL_typename C# (CSharp) Méthode

luaL_typename() public static méthode

public static luaL_typename ( IntPtr L, int n ) : string
L System.IntPtr
n int
Résultat string
        public static string luaL_typename(lua_State L, int n)
        {
            return lua_typename(L, lua_type(L, n));
        }
InvokeLua