Exemplo n.º 1
0
 static ServerAccounts()
 {
     if (ServerDataStorage.SaveExists(_serverAccountsFile))
     {
         Accounts = ServerDataStorage.LoadServerSettings(_serverAccountsFile).ToList();
     }
     else
     {
         Accounts = new List <ServerSettings>();
         SaveServerAccounts();
     }
 }
Exemplo n.º 2
0
 public static void SaveServerAccounts()
 {
     ServerDataStorage.SaveServerSettings(Accounts, _serverAccountsFile);
 }