ARCed.Settings.EditorSettings.Save C# (CSharp) Метод

Save() публичный Метод

Saves the settings files to disk in the AppData folder.
public Save ( ) : void
Результат void
        public void Save()
        {
            try
            {
                Util.SaveXML(PathHelper.EditorSettings, this);
                Util.SaveXML(PathHelper.SkinSettings, this.WindowSkin);
                Util.SaveXML(PathHelper.ScriptSettings, this.Scripting);
            }
            catch (IOException)
            {
                MessageBox.Show("Failed to save ARCed.NET settings.\nFile(s) are locked by another process.",
                    "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }