Does anyone know how to insert a line break into a summary comment in order for the line break to be reflected in Intellisense documentation?
To clarify, assume code documentation..
/// <summary>
/// Some text documentation
/// - a line break -
/// Some more documentation
/// </summary>
public void SomeMethod() { }
So when using this method Intellisense offers a summary for the method formatted like this:
Some text documentation
Some more documentation
(Note - the 'para' tag doesn't create empty line breaks - I've tried it!)
` in xml documentation. Refer the answer [here](https://stackoverflow.com/a/57734549/12001603). – Mahipal Sep 18 '19 at 14:32