コード例 #1
0
        // 登录请求后服务器的返回
        public int ResLogin()
        {
            byte[] data = new byte[1024];
            ReceiveData(ref data);
            int res = PBConverter.ResLogin(data);

            if (res == 0)
            {
                //NTY
                AsyncReceiveNty();
            }
            return(res);
        }