Example #1
0
 //protected void Start(ThreadStart func)
 //{
 //    theThread = new Thread(func);
 //}
 public object Start(object obj)
 {
     theThread = new Thread(() =>
     {
         if (looper != null)
         {
             response = looper.LoopFunc(obj);
         }
     });
     return(response);
 }