public static void Save(SaveableSettings Settings, string Path) { Settings.OnSave(); System.IO.File.WriteAllText(Path, JsonConvert.SerializeObject(Settings, Formatting.Indented)); }
public void Save(string Path) { SaveableSettings.Save(this, Path); }