GhostDoc Plugin
GhostDoc is a really useful plugin that automatically generates your XML comments for you. Take an example:
public static bool UpdateSystemConfiguration(string keyWord, string configValue) {}
Just a quick right click, select “Document this“ from the context menu and hey presto...
/// <summary>
/// Updates the system configuration.
/// </summary>
/// <param name="keyWord">Key word.</param>
/// <param name="configValue">Config value.</param>
/// <returns></returns>
public static bool UpdateSystemConfiguration(string keyWord, string configValue) {}
Sweet.