|
Project Information
Featured
Downloads
|
Xml serialisation for .Net applications IntroductionXStream.Net is the .Net version of Joe Walnes' XStream for Java. It is a simple library for serialisation/deserialisation to & from xml. The original code for this project was taken from Arne Vandamme's weblog which was a port of XStream for Java. Usagestring serialisedObject = new XStream().ToXml(originalObject); object deserialisedObject = new XStream().FromXml(serialisedObject); Assert.AreEqual(originalObject, deserialisedObject); |