111,092
社区成员




/// <summary>
/// 获取连接的客户端
/// </summary>
private void RecieveAccept()
{
while (true)
{
try
{
Socket socket = ServerSocket.Accept();
。。。。。。。。。。。
}
catch (Exception ex)
{
Log.WriteError(ex.ToString());
}
}
}