Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Issue about XML summary comments in VBNET

Intellisense is not showing my parameter names in blue color like I saw in other xml comments from 3rd party projects where Intellisense prints all the information, this is what I see:

enter image description here

What modifications I need to do in my comments to let intellisense to print the parameter comments in blue as the "returns"?

    ''' <summary>
    ''' Function to pause a thread.
    ''' </summary>
    ''' 
    ''' <param name="Process_Name">The name of the process, ex: cmd.exe</param>
    ''' <param name="Thread_Number">The thread to pause, ex: 0</param>
    ''' <param name="Recursive"> <value name="True">Pause the thread in all processes recursively</value></param>
    ''' <returns>True if the process is found; otherwise, False.</returns>
    Public Shared Function Pause_Thread(ByRef Process_Name As String, _
                              Optional ByVal Thread_Number As Int32 = 0, _
                              Optional ByVal Recursive As Boolean = False) As Boolean
like image 668
ElektroStudios Avatar asked Feb 16 '23 07:02

ElektroStudios


1 Answers

enter image description hereTry to install the Productivity Power Tools addin

  • VS 2010 - http://visualstudiogallery.msdn.microsoft.com/d0d33361-18e2-46c0-8ff2-4adea1e34fef/.
  • VS 2012 - http://visualstudiogallery.msdn.microsoft.com/3a96a4dc-ba9c-4589-92c5-640e07332afd.

From what I see you are looking for the Colorized Parameter Help.

Colorized Parameter Help This extension improves consistency with the editor by applying syntax highlighting to the contents of the Parameter Help window for C# &VB. Please note: Syntax highlighting colors can be customized using the display items prefixed with “Signature Help” in the “Fonts and Colors” menu.

Try Tools->Options->Environment->Fonts and Colors->Signature Help Tooltip Background.

like image 118
Mez Avatar answered Feb 23 '23 05:02

Mez