A
arfeengodil
Hi ..
I have this structure in C# with a couple of variables and I'm adding a
little description of that variable like:
/// <summary>
/// Some description
/// Some description line # 2
/// Some description line # 3
/// </summary>
String someVariable;
But when I view it in the intellisense menu, the description is
displayed in one long string instead of three different strings in
three different lines.
I just want to display some important information in this summary
section but having everything cluttered in one big string makes it hard
to read and understand.
Anybody have any ideas ?
Thanks
Arfeen
I have this structure in C# with a couple of variables and I'm adding a
little description of that variable like:
/// <summary>
/// Some description
/// Some description line # 2
/// Some description line # 3
/// </summary>
String someVariable;
But when I view it in the intellisense menu, the description is
displayed in one long string instead of three different strings in
three different lines.
I just want to display some important information in this summary
section but having everything cluttered in one big string makes it hard
to read and understand.
Anybody have any ideas ?
Thanks
Arfeen