0

For example, while I am writing code, VS Code shows method descriptions as you see below.

enter image description here

But how can I see such description for already existing methods? (That is, I want to see the "Forces the control to invalidate ..." message for Refresh()). I saw the existing answer, but ctrl+k ctrl+i was not the thing I was looking for, because it just showed the method signature without the documentation.

enter image description here

Gama11
  • 31,714
  • 9
  • 78
  • 100
Damn Vegetables
  • 11,484
  • 13
  • 80
  • 135
  • 1
    In VSCode, the hove provider handles that part, https://code.visualstudio.com/api/references/vscode-api#HoverProvider Therefore, you have to report to OmniSharp guys to see if they can fix that, https://github.com/OmniSharp/omnisharp-vscode/issues – Lex Li Jun 18 '20 at 03:38
  • So, you mean, currently it is impossible? – Damn Vegetables Jun 18 '20 at 16:43

1 Answers1

0

If you put you cursor inside the parenthesis and press "Ctrl + Shift + Space", it might do the trick.

Ilya Chernomordik
  • 27,817
  • 27
  • 121
  • 207