When writing an XML comment in C# it looks like the below, but when you minimize it then all you see is the summary title instead of the summary that you actually typed. In VB.Net it works the way i would expect and displays the comment text when minimized. Any way to adjust this behaviour through an extension or otherwise?
Regular
/// <summary>
/// Some Comment
/// </summary>
public int MyProperty { get; set; }
Minimized
|/// <summary> ...|
public int MyProperty { get; set; }
Ideal Minimized
| Some Comment |
public int MyProperty { get; set; }
Update. Here is an example from VB.Net. I can't believe i am saying this, but it would be great if C# would work the same way.
Regular
''' <summary>
''' Some Comment
''' </summary>
''' <remarks></remarks>
Sub Main()
End Sub
Minimized
|Some Comment|
Sub Main()
End Sub
visual-studiorelated question. What version are you using?