0

我正在用 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()

4

1 回答 1

0

这应该给你 TcpClient:

 clientsList[dataFromClient]
于 2012-04-29T17:46:06.813 回答