111,093
社区成员




while (true)
{
int iBytes = socketControl.Receive(buffer, buffer.Length, 0); //这里出错
strMsg += ASCII.GetString(buffer, 0, iBytes);
if (iBytes < buffer.Length)
{
break;
}
}