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

luaL_typename() 공개 정적인 메소드

Returns the name of the type of the value at index idx.
public static luaL_typename ( lua_State L, int i ) : string
L lua_State
i int
리턴 string
        public static string luaL_typename(lua_State L, int i)
        {
            return lua_typename(L, Lua.lua_type(L, i));
        }
Lua