ВК
Size: a a a
ВК
F
L
A
Э
AS
JS
Э
AS
KK
KK
KK
AS
void SaveToFile(Dictionary<string, string> dictionary, string fileName)
=> File.WriteAllText(fileName, string.Join("\n", dictionary.Select(x => $"{x.Key},{x.Value}")));
Dictionary<string, string> LoadFromFile(string fileName)
=> File.ReadAllLines(fileName).Select(x => x.Split(',')).ToDictionary(x => x[0], x => x[1]);
Э
void SaveToFile(Dictionary<string, string> dictionary, string fileName)
=> File.WriteAllText(fileName, string.Join("\n", dictionary.Select(x => $"{x.Key},{x.Value}")));
Dictionary<string, string> LoadFromFile(string fileName)
=> File.ReadAllLines(fileName).Select(x => x.Split(',')).ToDictionary(x => x[0], x => x[1]);
A

ID
A
A
ID