Post Undeleted by eed3si9n
show/hide this revision's text 2 Modified to static method.; deleted 1 characters in body; added 101 characters in body

See XmlSerializer.Deserialize Method:

private void DeserializeObject(string You could create a static method like the following:

    public static Options DeserializeFromFile(string filename) {    
	   Console.WriteLine("Reading with XmlReader");

   // Create an instance of the XmlSerializer specifying type and namespace.
	   XmlSerializer serializer = new XmlSerializer(typeof(OrderedItem))XmlSerializer(typeof(Options));

	   // A FileStream is needed to read the XML document.
	   using (FileStream fs = new FileStream(filename, FileMode.Open);
   ) {
	       XmlReader reader = new XmlTextReader(fs);
	       // Declare an object variable of the type to be deserialized.
   OrderedItem i;

   // Use the Deserialize method to restore the object's state.
   i = return (OrderedItem) Options) serializer.Deserialize(reader);
	   } // Write out the properties of the object.
   Console.Write(
   i.ItemName + "\t" +
   i.Description + "\t" +
   i.UnitPrice + "\t" +
   i.Quantity + "\t" +
   i.LineTotal);
using
    }

The above can be called as:

 Options foo = Options.DeserializeFromFile(@"C:\Options.xml");
    Post Deleted by eed3si9n
show/hide this revision's text 1