产生多个线程进行套接字测试C#

时间:2013-10-27 02:20:49

标签: c# sockets stress-testing

我有一个在TCP套接字上运行的多线程服务器。

我已经编写了这个方法来测试多个线程

TcpClient[] ClientArray = new TcpClient[10000];
for(i = 0; i < 10000; i++)
{
     ClientArray[i] = new TcpClient();
     // connect is my connect method to connect to the server
     ClientArray[i].connect() 
}

这种方法是否正确,或者是否有更好的方法来测试同时连接

0 个答案:

没有答案