Click here to Skip to main content
15,884,473 members
Articles / Programming Languages / XML

Simple settings using Generics and XML serialization

Rate me:
Please Sign up or sign in to vote.
1.41/5 (9 votes)
22 Aug 2007CPOL1 min read 28.2K   54   9   8
An easy and very dynamic way of saving your settings.

Introduction

Very often, when coding an application, you need to store your settings that you can easily load when the program starts. I guess most people use the app.config or settings, but I don't think using those is the best solution. Therefore, I came up with this very easy to use class that enables you to store any type of class to an XML file that can be reloaded very easily.

Using the code

The XmlSettings class uses XML serialization, a very basic and extremely fast method. The Load method takes XMLPath as an argument, and returns our type.

The Save method also takes the XMLpath argument and the T settings argument. T settings is the type you want to be serialized.

C#
public static T Load(string XMLPath)
{
     //Load settings and return our type

     T temp;
     XmlSerializer DeSerializer = new XmlSerializer(typeof(T));
     TextReader reader = new StreamReader(XMLPath);
     temp = (T)DeSerializer.Deserialize(reader);
     reader.Close();
     return temp;
}

public static void Save(string XMLPath, T settings)
{
     //Save settings to xml using our type
     
     XmlSerializer serializer = new XmlSerializer(typeof(T));
     TextWriter writer = new StreamWriter(XMLPath);
     serializer.Serialize(writer, settings);
     writer.Close();
}

Using the XMLSettings class is very basic.

When you want to save settings, first create your settings class with the variables you need in your program. Make sure it has a parameterless constructer. Give it the path to your XML file, and make sure all folders are created. Then, pass your settings class as well.

C#
//Save
XMLSettings<MySettings>.Save(XMLPath, Settings);

When loading, the Load method simply returns your type. Just pass the XML path to the method, and voila!

C#
//Load
setting = XMLSettings<MySettings>.Load(XMLPath);

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Denmark Denmark
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionString Name Required? Pin
Dean K11-Sep-07 22:03
Dean K11-Sep-07 22:03 
AnswerRe: String Name Required? Pin
Lasse Offt11-Sep-07 22:49
Lasse Offt11-Sep-07 22:49 
AnswerRe: String Name Required? Pin
Dean K11-Sep-07 22:58
Dean K11-Sep-07 22:58 
GeneralRe: String Name Required? Pin
Lasse Offt11-Sep-07 23:18
Lasse Offt11-Sep-07 23:18 
GeneralRe: String Name Required? Pin
Dean K12-Sep-07 15:17
Dean K12-Sep-07 15:17 
GeneralRe: String Name Required? Pin
Lasse Offt12-Sep-07 21:12
Lasse Offt12-Sep-07 21:12 
GeneralRe: String Name Required? Pin
Dean K13-Sep-07 0:01
Dean K13-Sep-07 0:01 
GeneralRe: String Name Required? Pin
Lasse Offt13-Sep-07 0:03
Lasse Offt13-Sep-07 0:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.