Exemplo n.º 1
0
 public FolderScanner(FolderQueue fq, IFolderView fv)
 {
     this.fq = fq;
     this.fv = fv;
     Thread t = new Thread(Runner);
     t.Priority = ThreadPriority.Lowest;
     t.Start();
 }
Exemplo n.º 2
0
        public FolderScanner(FolderQueue fq, IFolderView fv)
        {
            this.fq = fq;
            this.fv = fv;
            Thread t = new Thread(Runner);

            t.Priority = ThreadPriority.Lowest;
            t.Start();
        }