C#
2
Вклад в тег
public UserSettings()
{
DirectoryInfo dir = new DirectoryInfo(path_directory);
if (!dir.Exists)
{
dir.Create();
}
if (!File.Exists(path_fileSettings))
{
Serializer();
}
else
{
Deserialize();
}
}