I use this code
bud it slow and use more cpu
so
i want faster way
but how i can do it?
my code
public void Start()
{
for (int i = 1; i < 150; i++)
{
Thread reqThread = new Thread(new ParameterizedThreadStart(Test));
reqThread.Start(i);
}
}
Public void Test ( object i)
{
Try{
SetProxy
Connect
Send
Response
}
catch
{
Test(i)
}
}