private int GetCount()
 {
     if (IsRoaming)
     {
         return((int)_store.ToDictionary().Count);
     }
     else
     {
         return((int)_defaults.ToDictionary().Count);
     }
 }
 private int GetCount()
 {
     return((int)_store.ToDictionary().Count);
 }