Example #1
0
        public void Dispose(bool isUpdating = false)
        {
            EventSubscriber.UnSubscribe();

            /*
             * If the isUpdating is true it means the application will be force closing/killed.
             * You wil have to choose what you want to do in this case.
             * By default the settings class clears the settings object and recreates it; but if killed untimely it will not save.
             *
             * Suggested use is to not save settings if updating. Other disposing events could happen based on your needs.
             */
            if (isUpdating)
            {
                return;
            }
            Settings.Default.Save();
        }