Esempio n. 1
0
        public void StopTest(Boolean now)
        {
            shutdown = !now;
            StopTestClass stc        = new StopTestClass(now);
            Thread        stopThread = new Thread(stc.Run);

            stopThread.Start(this);
        }
Esempio n. 2
0
 public void StopTest(Boolean now)
 {
     shutdown = !now;
     StopTestClass stc = new StopTestClass(now);
     Thread stopThread = new Thread(stc.Run);
     stopThread.Start(this);
 }