string file_name = "settings";
// for Load
Config.Load(file_name);
// for Save
Config.Save(file_name);
// for set value
Config.SetValue<string>("example", "example text");
// for get value
string Output = Config.GetValue<string>("example");
/*
Output : example text
*/
Config.SetValue<string>("example", "example text");
Config.SetValue<int>("example-number", 256);
Config.Save("settings");