コード例 #1
0
 private void getCountries()
 {
     if (!this.countriesLoaded)
     {
         Toggl.GetCountries();
         this.countriesLoaded = true;
     }
 }
コード例 #2
0
 private void getCountries()
 {
     Dispatcher.Invoke(() =>
     {
         if (!this.countriesLoaded)
         {
             Toggl.GetCountries();
             this.countriesLoaded = true;
         }
     });
 }