Every now and then I spot a general purpose utility worth mentioning. CSAH is an add-in for Microsoft Visual Studio 2005 that allows you to copy source code together with syntax highlighting to clipboard as HTML. You can then publish code on your blog.


    1 using System;

    2 using System.Collections.Generic;

    3 using System.Windows.Forms;

    4 

    5 namespace Wischner.Vida

    6 {

    7     static class Program

    8     {

    9         /// <summary>

   10         /// The main entry point for the application.

   11         /// </summary>

   12         [STAThread]

   13         static void Main()

   14         {

   15             Application.EnableVisualStyles();

   16             Application.SetCompatibleTextRenderingDefault(false);

   17             Application.Run(new MainWnd());

   18         }

   19     }

   20 }


You can download CSAH from J.T. Leigh & Associates Inc.

Newer Posts Older Posts Home

Blogger Syntax Highliter