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:

How can I make this work?
 
     
    
 
    
