111,119
社区成员
发帖
与我相关
我的任务
分享
while (true)
{
int iBytes = socketControl.Receive(buffer, buffer.Length, 0); //这里出错
strMsg += ASCII.GetString(buffer, 0, iBytes);
if (iBytes < buffer.Length)
{
break;
}
}