Click here to Skip to main content
15,893,564 members
Articles / Web Development / HTML

XML Data Files, XML Serialization, and .NET

Rate me:
Please Sign up or sign in to vote.
4.82/5 (28 votes)
27 Aug 200317 min read 340.4K   6.4K   130  
Describes a means to build XML data files using XML Schema and xsd.exe to facilitate easy XML Serialization
using System;

namespace CardfileCE
{
	/// <summary>
	/// Summary description for TaggedListViewItem.
	/// </summary>
	public class TaggedListViewItem : System.Windows.Forms.ListViewItem
	{
		public TaggedListViewItem() : base()
		{
		}

		public TaggedListViewItem(string[] strings) : base(strings)
		{
		}

		public object Tag = null;
	}
}

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
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions