Ejemplo n.º 1
0
        protected override void OnStart(string[] args)
        {
            CTuxControl tc     = new CTuxControl();
            Thread      worker = new Thread(new ThreadStart(tc.handleSimpliciTI));

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

            tc.handleSimpliciTI();
        }
Ejemplo n.º 5
0
 private void handleSimpliciTI()
 {
     tc = new CTuxControl(new dLog(log));
     tc.handleSimpliciTI();
 }