I need your help.
i want To create a c# class which works together with a config file placed in the /config/ folder (ie. /config/newfolder/DateFolder.config.)
i want to create a config file in this format dynamically..
how to dynamically create elements in config file.(Example here is: DateFolders,DateFolder,2009,September,5)
<2009>
<5>Page5>
2009>
asif khanPosted Sep 9, 2009, 12:52 AM
Roei BarPosted Sep 8, 2009, 4:13 PM
like this
target.AppSettings.Settings and source.AppSettings.Settings hold the AppSettings KeyValueCollection
Master BillaPosted Sep 8, 2009, 10:19 AM
You can read above file using XML.If not custom config you can read using ConfigurationManager class.
i assume this a custom XML file.