public void InitializeConfiguration() { try { this.xmlConfiguration = new XMLConfig(INIT_FILE_NAME, false); } catch (Exception) { //Create the config file this.xmlConfiguration = new XMLConfig(INIT_FILE_NAME, true); this.xmlConfiguration.Settings["lastsetlistfile"].Value = DEFAULT_XML_SETLIST_FILE; this.xmlConfiguration.Save(INIT_FILE_NAME); } this.xmlSetlistFilename = this.xmlConfiguration.Settings["lastsetlistfile"].Value; }
public void InitializeConfiguration() { try { this.xmlConfiguration = new XMLConfig(INIT_FILE_NAME, false); } catch(Exception) { //Create the config file this.xmlConfiguration = new XMLConfig(INIT_FILE_NAME, true); this.xmlConfiguration.Settings["lastsetlistfile"].Value = DEFAULT_XML_SETLIST_FILE; this.xmlConfiguration.Save(INIT_FILE_NAME); } this.xmlSetlistFilename = this.xmlConfiguration.Settings["lastsetlistfile"].Value; }