Mono.Documentation.MDocToHtmlConverter.DumpTemplate C# (CSharp) Method

DumpTemplate() private static method

private static DumpTemplate ( ) : void
return void
	private static void DumpTemplate() {
		Stream s = Assembly.GetExecutingAssembly().GetManifestResourceStream("defaulttemplate.xsl");
		Stream o = Console.OpenStandardOutput ();
		byte[] buf = new byte[1024];
		int r;
		while ((r = s.Read (buf, 0, buf.Length)) > 0) {
			o.Write (buf, 0, r);
		}
	}