Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 24th, 2012  |  syntax: None  |  size: 0.32 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Send bulk email using c# multithreading concept [closed]
  2. for( i=0; i<total_thread_no; i++)
  3.     {
  4.      Thread th=new Thread(email_sending_function);
  5.      th.Start();
  6.     }
  7.        
  8. for( i=0; i<total_thread_no; i++)
  9.     {
  10.      Thread th=new Thread( ()=> email_sending_function(parameter1,parameter2,...)
  11.      th.Start();
  12.     }