Click here to Skip to main content
15,892,298 members
Articles / Programming Languages / XML

A Custom .NET XML Serialization Library

Rate me:
Please Sign up or sign in to vote.
4.43/5 (4 votes)
25 Jan 200611 min read 42.3K   432   21  
Describes a custom XML serialization library, with functionality to compare for, and to combine differences
using System;
using System.Collections;
using System.Xml;
using System.IO;

namespace Wxv.Wml.IO
{
	/// <summary>
	/// A WmlReader class which implements a reader over a WmlDocument structure
	/// </summary>
	public class WmlDomNodeReader : WmlNodeReader
	{
		public WmlDomNodeReader (WmlDocument doc) : base (doc)
		{
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.


Written By
Web Developer
New Zealand New Zealand
Im a Software Developer working in Auckland, New Zealand. When i was a lot shorter, i started programming in Atari Basic, though these days its mostly C#, and a bit of java (mostly the caffinated kind).

Comments and Discussions