微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

关于VBNET中的XML摘要注释的问题

Intellisense没有显示我的蓝色参数名称,就像我在第三方项目的其他xml评论中看到的那样Intellisense打印了所有信息,这就是我所看到的:

我需要做什么修改才能让intellisense以蓝色打印参数注释作为“返回”?

''' <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

解决方法

尝试安装Productivity Power Tools插件

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

从我看到你正在寻找彩色参数帮助.

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.

尝试工具 – >选项 – >环境 – >字体和颜色 – >签名帮助工具提示背景.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。