I Got Tired of XML Doc Comments, So I Built My Own Visual Studio Extension
The Problem If you've written any serious C# code, you know the pain. Your /// doc comments are packed with useful information — but reading them in the editor looks like this: /// <summary> ...

Source: DEV Community
The Problem If you've written any serious C# code, you know the pain. Your /// doc comments are packed with useful information — but reading them in the editor looks like this: /// <summary> /// Calculates the total price including <paramref name="taxRate"/> for a given /// <see cref="Order"/>. Returns <c>0</c> if the order has no items. /// </summary> /// <param name="order">The order to calculate.</param> /// <param name="taxRate">The tax rate as a decimal, e.g. <c>0.2</c> for 20%.</param> /// <returns>The total price as a <see cref="decimal"/>.</returns> /// <exception cref="ArgumentNullException">Thrown when <paramref name="order"/> is null.</exception> Raw XML noise everywhere. Every single method. I tried PrettyDocComments. The concept was right but the aesthetics drove me crazy — it looked out of place in a modern IDE. So I built Render Doc Comments. What It Does Render Do