How to show method parameter tooltip in C#?

后端 未结 5 646
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-29 20:11

VS2010:

In VB I can place the cursor inside an existing method\'s parameter brackets and type a \'space\', which will bring up the tooltip with description of the param

5条回答
  •  忘掉有多难
    2021-01-29 21:14

    Visual Studio 2019 with VsVim extension

    Works both in NORMAL and INSERT modes, for C# and C++ with:

    Ctrl+Shift+Space

    Just make sure to place the caret right after the first parenthesis:

    C#

    "Value".Contains(|   <-- caret
    

    C++

    glClearColor(|  <-- caret
    

提交回复
热议问题