我不确定是什么问题,因为我已经尝试了TcpListener.Start(int backlog)的其他方法重载,但是发生了相同的结果。也许我对它进行初始化有点不对劲?
答案 0 :(得分:2)
为什么要指定主机和端口两次?将它们提供给TcpListener
构造函数应该足够了:
public Station()
{
this.connections = new List<TcpClient>();
this.server = new TcpCient(IPAddress.Loopback, 6969);
}
public void Start()
{
server.Start();
}