Visual Studio plug-in: GhostDoc
Are your tired of documenting you code using C# /// XmlDoc syntax for each and every method? It is time for you to meet SubMain’s GhostDoc. SubMain’s GhostDoc is a Visual Studio plug-in the was design...
View ArticleGhostDoc Tutorial
Earlier I have introduced this excellent comment auto generation tool – GhostDoc. Now you can follow this instructions to get GhostDoc working in just 5 minutes. Download GhostDoc and install GhostDoc...
View ArticleUse coalescing operator to write more readable code
Tired of code like this? public string Foo { get { return foo; } set { if (value == null) value = String.Empty; foo = value; } } public string Bar { get { return bar; } set { if (value == null) value =...
View ArticleCopySourceAsHtml for Visual Studio 2010
CopySourceAsHtml is an add-in for Microsoft Visual Studio 2008 that allows you be able to quickly get your code as HTML from Visual Studio, just like being able to save it as a HTML file from the Save...
View Article