Thursday, February 22, 2007

Test of Code Snippet WLWPI

Code Snippet Editor after Resetting blog to NOT convert line feeds.

using System;
using System.IO;

namespace HtmlAgilityPack.Samples
{
    class Html2Xml
    {
        [STAThread]
        static void Main(string[] args)
        {
            Test();
        }

        static void Test()
        {
            HtmlToText htt = new HtmlToText();
            string s = htt.Convert(@"..\..\mshome.htm");
            StreamWriter sw = new StreamWriter("mshome.txt");
            sw.Write(s);
            sw.Flush();
            sw.Close();
        }
    }
}

I have tested this on spaces.live.com and it fails in exactly the same way.

No comments:

Post a Comment