예제 #1
0
        protected override void OnStart(string[] args)
        {
            CTuxControl tc     = new CTuxControl();
            Thread      worker = new Thread(new ThreadStart(tc.handleSimpliciTI));

            worker.Start();
        }
예제 #2
0
 protected override void OnStart(string[] args)
 {
     CTuxControl tc = new CTuxControl();
     Thread worker = new Thread(new ThreadStart(tc.handleSimpliciTI));
     worker.Start();
 }
예제 #3
0
 static void Main(string[] args)
 {
     CTuxControl tc = new CTuxControl();
     tc.handleSimpliciTI();
 }
예제 #4
0
        static void Main(string[] args)
        {
            CTuxControl tc = new CTuxControl();

            tc.handleSimpliciTI();
        }
예제 #5
0
 private void handleSimpliciTI()
 {
     tc = new CTuxControl(new dLog(log));
     tc.handleSimpliciTI();
 }