111,126
社区成员
发帖
与我相关
我的任务
分享
//循环接收看下
while (true)
{
int data = handler.Receive(bytes, bytes.Length, 0);
Loading.string_Loading = "正在从服务端接收数据......";
if (data <= 0)
break;
for (int j = 0; j < data; j++)
{
listBytes.Add(bytes[j]);
}
}