Sophie

Sophie

distrib > Mandriva > current > x86_64 > by-pkgid > cce607a8c492c8ede8e5451290758926 > files > 39

mono-doc-2.6.4-4mdv2010.1.x86_64.rpm

using HtmlAgilityPack;

class Convert {
	
	static void Main (string [] args)
	{
		HtmlDocument doc = new HtmlDocument();
		doc.Load(args [0]);
		doc.OptionOutputAsXml = true;
		doc.Save(args [1]);
	}
}