Ejemplo n.º 1
0
 protected SingleThreadWorker()
 {
     _Core                = CoreBinder.Allocate();
     _Priority            = ThreadPriorityLevel.Normal;
     _thread              = new Thread(_Run);
     _thread.IsBackground = true;
     _thread.Start();
 }