Check out example codes for "how to save a c# dictionary". It will help you in understanding the concepts better.
Code Example 1
File.WriteAllText("SomeFile.Txt", new JavaScriptSerializer().Serialize(dictionary));
Code Example 2
var dictionary = new JavaScriptSerializer()
.Deserialize<Dictionary<string, string>>(File.ReadAllText("SomeFile.txt"));
Learn ReactJs, React Native from akashmittal.com