XIII XIII

XIII XIII

  • NA
  • 14
  • 2.2k

how can Release thread speed?

Aug 10 2014 4:56 PM
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)
 
 
 

Answers (7)