Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiline XML Comments in VB.NET and Visual Studio Intellisense

I'm trying to put newlines in my XML Comments in VB.Net. I've read two other posts about C#,

XML multiline comments in C# - what am I doing wrong?

Adding line breaks to comments for Intellisense

But the suggested <para> or <br/> tags don't work. This,

    ''' <summary>
    ''' <para>Line one</para><br />
    ''' <para>Line two</para><br />
    ''' </summary>
    ''' <value></value>
    ''' <returns></returns>
    ''' <remarks></remarks>
    Public Property Speed As Double

Still appears like this:

enter image description here

How can I make this work?

like image 664
Kratz Avatar asked Aug 15 '11 20:08

Kratz


1 Answers

As time goes by, bugs get fixed. This works now in Visual Studio 2015 Update 3:

screenshot

(It might work in earlier versions as well, but I don't have them installed anymore.)

like image 76
Heinzi Avatar answered Oct 20 '22 15:10

Heinzi