Friday, December 2, 2005

I saw this up on MSDN. Its worth trolling the MSDN Mag site periodically to see what articles are there. I used to, and still do, troll the brick and mortar Barnes and Noble nearby to see the magazines. I no longer see the MSDN Magazine there anymore, so I've switched to reading it on the web from time to time.

Ten Essential Tools: Visual Studio Add-Ins Every Developer Should Download Now -- MSDN Magazine, December 2005

I used the CodeSourceToHtml AddIn to produce the code below. I've been looking for a Source to HTML tool since I started blogging!


public delegate void ProgressEventHandler(object sender, ProgressEventArgs args);
 
public class ProgressEventArgs : EventArgs
{
    private string _probeName;
 
    public ProgressEventArgs(string probeName)
    {
        _probeName = probeName;
    }
 
    public string ProbeName
    {
        get
        {
            return _probeName;
        }
    }
}

Enjoy!

No comments:

Post a Comment