Exemplo n.º 1
0
 private void SaveDataToDisk(string filePath)
 {
     try
     {
         File.WriteAllBytes(filePath, saveData.EncryptedData());
     }
     catch (Exception ex)
     {
         AppLog.LogError("Exception in SaveDataToDisk: \n" +
                         ex.StackTrace);
     }
 }