application settings

Hi,
is there in .NET some classes easy to use to retrieve and store user data to XML?
thank you
[106 byte] By [gibic] at [2007-12-16]
# 1
Check out the Configuration AppBlock that comes with Enterprise Library. It will likely have what you require.

If you don't want to go that route, you can always use XmlReader and XmlWriter to write your own config files. Or you can use the XmlSerializer to serialize/deserialize a configuration settings object that you create.

JamesKovacs at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# General...
# 2
Hi,

use the readXML() and writeXML() methods of DataSet class.

rgerbig at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# General...
# 3

Take a look at http://www.visualbasicforum.com/t131671.html .
This article should give you an idea on how you could create your own class to handle this. It is written in VB.NET though, but works the same.

cspare at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# General...
# 4
thanx this is what i need.
only few correction was needed to exclude from "application project" and make an dll library useful in c# :)
gibic at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# General...