35

Any idea why I'm not getting any documentation to go along with my ReSharper IntelliSense? If I go to the ReSharper options and enable the Visual Studio IntelliSense instead, I get the proper documentation when going through the members in the IntelliSense pop up. If I re-enable the ReSharper IntelliSense, I now get the ReSharper IntelliSense pop up sans documentation.

Pete
  • 10,651
  • 9
  • 52
  • 74

2 Answers2

49

Go to ReSharper | Options -> Environment | IntelliSense | Completion Appearance. Check Show member signatures and Show summary.

Dmitry Osinovskiy
  • 9,999
  • 1
  • 47
  • 38
3

For those who, like me, tried the solution provided above and it didn't work. I found this article and it did the trick for me.

Go to Tools - Options - Text Editor - C# (or all Languages, or whatever you need). In the general section, the options Auto list Members and Parameter information must be enabled. (I suppose only Parameter Information would be fine to, but i enabled the other one anyway as its a nice feature).

nozzleman
  • 9,529
  • 4
  • 37
  • 58
  • This way you turn on Visual Studio builtin intellisense, not ReSharper one. And if you have ReSharper installed and have both Visual Studio and ReSharper intellisense turned on, you would really have battle of intellisenses. – Dmitry Osinovskiy Dec 20 '13 at 17:15
  • I see your point, but it only turns on this single specific feature of vs's intellisense, I have no problems so far. – nozzleman Dec 21 '13 at 13:11
  • No, it turns on the whole VS intellisense, not a "single specific feature" – Dmitry Osinovskiy Dec 21 '13 at 19:50
  • 1
    i tried this and the above answer and (still) did not work. So unfortunately I will have to deal with it :) – Stefan Hendriks Aug 30 '16 at 12:48