Click here to Skip to main content
15,883,749 members
Articles / Web Development / ASP.NET

XsdTidy beautifies the Xsd.exe output *with full DocBook .NET Wrapper*

Rate me:
Please Sign up or sign in to vote.
4.89/5 (32 votes)
1 Mar 20048 min read 185.5K   2.4K   72  
Refactors the Xsd.exe classes. Shipped with a full .NET wrapper of DocBook.
using System;
using System.Xml;
using System.Xml.Serialization;
using System.Collections;
using System.Collections.Specialized;
using System.IO;

namespace NDocBook.Test
{
	using NDocBook;
	/// <summary>
	/// Summary description for Class1.
	/// </summary>
	class Class1
	{
		public static void MyFirstBook()
		{
			XmlSerializer ser = new XmlSerializer(typeof(Book));

			Book b = new Book();
			b.Title = new Title();
			b.Title.Text.Add("My first book");
			b.Subtitle = new Subtitle();
			b.Subtitle.Text.Add("A subtitle");

			Toc toc = new Toc();
			b.Items.Add(toc);
			toc.Title = new Title();
			toc.Title.Text.Add("What a Toc!");

			Part part = new Part();
			b.Items.Add(part);
			part.Title = new Title();
			part.Title.Text.Add("My first page");
			
			// generate xml
			using (StreamWriter sw = new StreamWriter("mybook.xml"))
			{
				XmlTextWriter writer = new XmlTextWriter(sw);
				writer.Formatting = Formatting.Indented;
				ser.Serialize(writer,b);
			}
		}

		/// <summary>
		/// The main entry point for the application.
		/// </summary>
		[STAThread]
		static void Main(string[] args)
		{

			try
			{
				MyFirstBook();
			}
			catch(Exception ex)
			{
				Console.WriteLine(ex.ToString());
			}

		}
	}
}

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.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Engineer
United States United States
Jonathan de Halleux is Civil Engineer in Applied Mathematics. He finished his PhD in 2004 in the rainy country of Belgium. After 2 years in the Common Language Runtime (i.e. .net), he is now working at Microsoft Research on Pex (http://research.microsoft.com/pex).

Comments and Discussions