Hi,
I'm building a processing system, and I would like to configure it using an XML.
What technology should I use?, I have a lot of options:
1] I can serilize a dumy object into xml, change the content and then load it every time I run the app. I'v implemented this, because you don't have to write a lot of code to make this work, but It's a very dirty process. So I'm currently unhapppy.
2] You can use a XElement to read XMLs, just pass one to the constructer and let it build itself from that.
3] Use the .NET application settings architecture. <- I don't really undstand how this works yet.
I want the code to be simple and stupid, and to allow the code to change the config file for example, change the date of the last successful event.
Anyways if you can point me to useful places, and give me some direction, I'd really appreciate it.
Cheers.