SIL.FieldWorks.XWorks.FwXWindow.SaveSettingsNow C# (CSharp) Method

SaveSettingsNow() public method

Save the persisted settings now.
public SaveSettingsNow ( ) : void
return void
		public void SaveSettingsNow()
		{
			CheckDisposed();

			try
			{
				RegistryKey key = SettingsKey;
				key.SetValue("LatestConfigurationFile", m_configFile);
			}
			catch (Exception e)
			{
				// just ignore any exceptions. It really doesn't matter if SaveSettingsNow() fail.
				Console.WriteLine("FwXWindow.SaveSettingsNow: Exception caught: {0}", e.Message);
			}
		}
FwXWindow