I have found many QA on SO that talk about how to create a new PARAGRAPH
(aka a blank line between two lines). However, I'm trying to create a NEW LINE
(just a return to a new line). Is this possible? Sorry if this is a duplicate, everything I could find did not address this EXACT question that I could find.
What I'm currently using in my source...
/// <summary>
/// Some header text.
/// <para>This is the first paragraph created.</para>
/// <para>This is the second paragraph created.</para>
/// Some footer text.
/// </summary>
/// <returns>bool value</returns>
public bool TestFunction(string par)
{
return true;
}
This ends up with the following results...
What I'm looking for in the results is the following...