static int _m_init_xlua_st_(RealStatePtr L)
        {
            try {
                {
                    string ip   = LuaAPI.lua_tostring(L, 1);
                    int    port = LuaAPI.xlua_tointeger(L, 2);

                    NetWorkClient.init(ip, port);



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