Chad Myers mentioned that he was using Windows Live Writer to post to his blog so I thought that I'd give it a try. I downloaded the Paste from Visual Studio plug-in for code syntax highlighting and it seems to work pretty well.
Here's a code example:
public object GetInstance()
{
if (isSingleton)
{
if (instance == null)
instance = Invoke();
return instance;
}
else
return Invoke();
}
The easier I make it for myself to post to this blog, the more often I'll do it. So this is good.