Is there a way to use bold or italic inside documentation comments? Something like:
/// <summary>Cleanup method. This is <b>recommended</b> way of cleanup.</summary>
public void CleanAll();
List of predefined tags does not contain such a features, but do you know of some way of achieving emphasis/highlighting? Preferably, if it could be shown also in tooltips when hovering over the code.
We have <c>
and <code>
there, but they already have their semantics.
This feature is now available in Visual Studio 2019 version 16.3.0 (release notes).
<i>
or <em>
tags for italic.<b>
or <strong>
tags for bold.It looks like this: .