static int _m_GetGlyphSize(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);


                FairyGUI.BitmapFont gen_to_be_invoked = (FairyGUI.BitmapFont)translator.FastGetCSObj(L, 1);



                {
                    char  _ch = (char)LuaAPI.xlua_tointeger(L, 2);
                    float _width;
                    float _height;

                    bool gen_ret = gen_to_be_invoked.GetGlyphSize(
                        _ch,
                        out _width,
                        out _height);
                    LuaAPI.lua_pushboolean(L, gen_ret);
                    LuaAPI.lua_pushnumber(L, _width);

                    LuaAPI.lua_pushnumber(L, _height);



                    return(3);
                }
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
        }