指定了TcpListener无效参数

时间:2011-09-20 22:01:48

标签: c# tcplistener

code problem

我不确定是什么问题,因为我已经尝试了TcpListener.Start(int backlog)的其他方法重载,但是发生了相同的结果。也许我对它进行初始化有点不对劲?

1 个答案:

答案 0 :(得分:2)

为什么要指定主机和端口两次?将它们提供给TcpListener构造函数应该足够了:

public Station()
{
    this.connections = new List<TcpClient>();
    this.server = new TcpCient(IPAddress.Loopback, 6969);
}

public void Start()
{
    server.Start();
}