Tuesday, February 17, 2009

Testing Pretty Formatter

I'm trying to see if I can get my code to look pretty in my blogger posts.
I got this from Luka Marinko's geek blog (thanks Luka)
http://lukabloga.blogspot.com/2008/10/to-test-new-highlighting.html


static class Program
{
///
/// The main entry point for the application.
///

[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new FormMainApplication());
}
}

No comments:

Post a Comment