Intellisense 没有像我在来自 Intellisense 打印所有信息的 3rd 方项目的其他 xml 注释中看到的那样以蓝色显示我的参数名称,这就是我所看到的:
我需要在评论中进行哪些修改才能让智能感知以蓝色打印参数评论作为“返回”?
''' <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