Removed const keyword because SpecialDirectories

This commit is contained in:
2023-03-28 12:50:08 +02:00
parent 0a665e5b4c
commit a59fe2df50

View File

@@ -10,10 +10,10 @@ namespace Password_Manager
password_store_path: path to the folder which contains the .gpg files
recipient: whose public key to use for encryption when a new password is created
*/
private static const string CONFIGPATH = SpecialDirectories.CurrentUserApplicationData + "\\config.cfg";
private static const char DELIMETER = '=';
private static const string RECIPIENT = "recipient";
private static const string PATH = "password_store_path";
private static string CONFIGPATH = SpecialDirectories.CurrentUserApplicationData + "\\config.cfg";
private static char DELIMETER = '=';
private static string RECIPIENT = "recipient";
private static string PATH = "password_store_path";
#endregion
private static Config Configuration;