XmlDeserialization
Description: Deserializer of an xml file into a class
Link: http://www.codekeep.net/snippets/a783355a-14a7-46ed-9c0f-6d06a23d32cc.aspx
XmlSerializer s = new XmlSerializer( typeof( ShoppingList ) );
// Deserialization
ShoppingList newList;
TextReader r = new StreamReader("list.xml");
newList = (ShoppingList)s.Deserialize(r);
r.Close();






