Welcome to mirror list, hosted at ThFree Co, Russian Federation.

convert.cs « docs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 50680f6713fce06e14697712745f60143b06f498 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using HtmlAgilityPack;

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