I have an XML file that contains database settings that may change depending on where it is read. Preferably, I would read those settings from some configuration file. How can this be done?
|
feedback
|
|
You can use the System.Xml.Serialization.XmlSerializer class to automatically pull the settings into a custom class. Create a class with your settings:
Then use the following to pickup data:
Likewise, if you want to assign the current object to the settings file, do this:
In this case the "settings.xml" file is in the current directory, but I normally put it in the User's app data folder, because you can always write to that. | |||
feedback
|
|
You can either use the app.config file, or create your own XML file to store them | |||
|
feedback
|
|
Try my following post on this subject, very similar to the proposed solution by Dave above but just with a bit more flesh. http://www.picnet.com.au/blogs/Guido/post/2009/09/10/XML-Settings-Files-No-more-webconfig.aspx | |||
|
feedback
|