when setting a summary for a property / field / method etc.. is it possible to manually break the lines without using the para (paragraph break)
/// <summary>
/// line one
/// line two
/// </summary>
public int member{get;set;}
On hover, this shows
int member
line one line two
Adding <para>
??? </para>
tags like
/// <summary>
/// <para>line one</para>
/// <para>line two<para>
/// </summary>
public int member{get;set}
shows
int member
line one
line two
What I am looking for is
int member
line one
line two
Notice that there is not a blank line between line one and line two