lua_tostring() public static method

public static lua_tostring ( IntPtr luaState, int index ) : string
luaState System.IntPtr
index int
return string
Example #1
0
 public static string GetString(this IntPtr L, int index)
 {
     return(Lua.lua_tostring(L, index));
 }