views:

278

answers:

1

I am trying to get VB.NET XML Comments to work with IntelliSense, and maybe it doesn't work the way I think it does.

    ''' <summary>
    ''' Gets or sets the Patient Code.
    ''' <list type="bullet">
    ''' <listheader><description>Validation:</description></listheader>
    ''' <item><description>Field Required</description></item>
    ''' <item><description>Field Max Length: 25</description></item>
    ''' </list>
    ''' </summary>
    ''' <value>The region reference key.</value>

This should, when you are typing in a function, display the "Get or sets the Patient Code" then below that, it should display a list of bulleted items with "Validation:" as the header?

alt text

Maybe I am doing it wrong, but it doesn't seem to be working correctly.

+1  A: 

You are not doing this incorrectly, it's just simply not supported. While the HTML markups may appear in the output of some tools, IntelliSense is not one of them.

IntelliSense is a textual display in Visual Studio 2008 and we do not support displaying many / most of the markups as they should appear in an HTML style display. Instead we tend to strip out the markup tags that are not supported and display the resulting text.

JaredPar
*This is just sad*.. especially when working with third party libs *THIS* would be a major productivity boost, since one dose not have to lookup the documentation all the time.
ntziolis