C#一个按钮打开与关闭TCPclient
发布网友
发布时间:2024-10-22 07:14
我来回答
共1个回答
热心网友
时间:2024-12-03 20:13
你这种情况可以参考这样子定义TcpClient
private static TcpClient _tcpClient;
public static TcpClient TcpClient
{
get {
if (_tcpClient == null)
return new TcpClient();
else
return _tcpClient;
}
}追问
这样修改 已经实现 , 但不知道为什么 ?