VAGSuite.AppSettings.SaveSettings C# (CSharp) Метод

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

public SaveSettings ( ) : void
Результат void
        public void SaveSettings()
        {
            RegistryKey TempKey = null;
            TempKey = Registry.CurrentUser.CreateSubKey("Software");

            using (RegistryKey saveSettings = TempKey.CreateSubKey("VAGEDCSuite"))
            {

                saveSettings.SetValue("CodeBlockSyncActive", _codeBlockSyncActive);
                saveSettings.SetValue("RequestProjectNotes", m_RequestProjectNotes);
                saveSettings.SetValue("ShowTablesUpsideDown", m_ShowTablesUpsideDown);

                saveSettings.SetValue("LastProjectname", m_lastprojectname);
                saveSettings.SetValue("LastOpenedType", m_LastOpenedType);
                saveSettings.SetValue("SymbolDockWidth", m_SymbolDockWidth);

                saveSettings.SetValue("ProjectFolder", m_ProjectFolder);
                saveSettings.SetValue("RequestProjectNotes", m_RequestProjectNotes);

                saveSettings.SetValue("ViewInHex", m_viewinhex);
                saveSettings.SetValue("LastFilename", m_lastfilename);
                saveSettings.SetValue("ShowRedWhite", m_ShowRedWhite);
                saveSettings.SetValue("AutoChecksum", m_AutoChecksum);
                saveSettings.SetValue("ShowAddressesInHex", m_ShowAddressesInHex);
                saveSettings.SetValue("ShowGraphs", m_ShowGraphs);
                saveSettings.SetValue("AutoSizeNewWindows", m_AutoSizeNewWindows);
                saveSettings.SetValue("AutoSizeColumnsInWindows", m_AutoSizeColumnsInWindows);
                saveSettings.SetValue("DisableMapviewerColors", m_DisableMapviewerColors);
                saveSettings.SetValue("AutoDockSameFile", m_AutoDockSameFile);
                saveSettings.SetValue("AutoDockSameSymbol", m_AutoDockSameSymbol);
                saveSettings.SetValue("NewPanelsFloating", m_NewPanelsFloating);
                saveSettings.SetValue("Skinname", m_skinname);
                saveSettings.SetValue("DefaultViewType", (int)m_DefaultViewType);
                saveSettings.SetValue("DefaultViewSize", (int)m_DefaultViewSize);
                saveSettings.SetValue("AutoLoadLastFile", m_AutoLoadLastFile);
                saveSettings.SetValue("SynchronizeMapviewers", m_SynchronizeMapviewers);
                saveSettings.SetValue("SynchronizeMapviewersDifferentMaps", m_SynchronizeMapviewersDifferentMaps);
            }
        }