![c#](https://habrastorage.org/r/w120/webt/5a/de/18/5ade18911a778864474783.png)
C#
2
Вклад в тег
public UserSettings()
{
DirectoryInfo dir = new DirectoryInfo(path_directory);
if (!dir.Exists)
{
dir.Create();
}
if (!File.Exists(path_fileSettings))
{
Serializer();
}
else
{
Deserialize();
}
}