Test post.

March 7, 2009

This is just an example post to check how wordpress.com is able to handle c# source code. I’ve been trying to get it working for some time now but it looks like there is no way to do it easly. It’s a pity wordpress.com doesn’t have SyntaxHighlighter script from Alex Gorbatchev installed. It’d be so nice and easy. Anyway it’s not installed so we need to do it some other way.
Let’s find out what the output of http://dotnetslackers.com/articles/csharpformat.aspx looks like.

using System.Windows;
using System;

namespace ListBoxApp
{
    class Program : Application
    {
        [STAThread]
        static void Main()
        {
            Program program = new Program();
            program.Run( new MainWindow() );
        }
    }
}

Leave a Reply