xlua中lua对象到c#对象的转型
xlua中lua对象到c#对象的转型 lua中的类型基础类型 define LUA_TNIL 0 define LUA_TBOOLEAN 1 define LUA_TLIGHTUSERDATA 2 define LUA_TNUMBER 3 define LUA_TSTRING 4 define LUA_TTABLE 5 define LUA_TFUNCTION 6 define LUA_TUSERDATA 7 define LUA_TTHREAD 8 变体(或者说子类型) /*** tags for Tagged Values have the following use of bits:* bits 0-3: actual tag (a LUA_T value)** bits 4-5: variant bits** bit 6: whether value is collectable*/ /*** LUA_TFUNCTION variants:** 0 - Lua function** 1 - light C function** 2 - regular C function (c...
