我正在用 C# 开发一个用于管理的开放 telnet 端口的聊天程序。交易是每次客户端连接到服务器时,服务器都会将他的昵称和套接字存储在哈希列表中。有没有办法找回 TcpClient 以便我可以做TcpClient.Disconnect()
或Close()
?
我的代码:
// When the client enters the server
clientsList.Add(dataFromClient, clientSocket);
// This will add the nick and tcpclient to the Hashtable
有没有办法找回它,以便我可以做Close()
或disconnect()
?