I tried most of the suggestions available online for C# but I always get all comments in a long line. For instance:
/// <summary>
/// <para> foo </para>
/// <para> bar </para>
/// <para> 2 other </para>
/// </summary>
It puts everything in one line. I would like to have foo in one line and below bar in another line. Is that possible? Thanks for your help.

Comment