In user code, comments (<summary> for e.g.) are typically entered on multiple lines to ensure 80 or whatever reasonable # of characters/line.
The info tip in Visual Studio shows them as one line, maybe wrapped to fit the screen when too long.
On the other hand, the SyntaxEditor seems to keep the # of lines the <summary/> had in the code.
To illustrate:
///<summary>
/// 1
/// 2
/// 3
///</summary>
will show as 1 2 3 in Visual Studio
and as
1
2
3
in SyntaxEditor.
Should this be taken care of internally by SyntaxEditor or should the users try to deal with it?
Thank you.
The info tip in Visual Studio shows them as one line, maybe wrapped to fit the screen when too long.
On the other hand, the SyntaxEditor seems to keep the # of lines the <summary/> had in the code.
To illustrate:
///<summary>
/// 1
/// 2
/// 3
///</summary>
will show as 1 2 3 in Visual Studio
and as
1
2
3
in SyntaxEditor.
Should this be taken care of internally by SyntaxEditor or should the users try to deal with it?
Thank you.