Beispiel #1
0
 private void FillAppeals()
 {
     if (File.Exists(_pathToZipAppeals))
     {
         Appeals.Clear();
         Thread myThread = new Thread(new ThreadStart(FillAppeal));
         myThread.Start();
     }
 }