12,165
社区成员
发帖
与我相关
我的任务
分享 public bool VerifyConnection()
{
if (clt == null)
{
return OpenClient();
}
else if (clt.State != CommunicationState.Opened)
{
return OpenClient();
}
return true;
}
没加锁?