Reputation: 46
I have some problems using Intellisense/Resharper in my Visual Studio 2012.
When Autocomplete shows me class members i'd like to see the complete xmlDoc as Tooltip. The closest i came was using Resharper and activate "show Summary" in "Completion Appearance" Options. But what about the parameter description, return type text, ...?
I am used to autocomplete from java Eclipse and i really miss this in Visual Studio. Perfect would be to see the same tooltip when hoovering the mouse over a class member.
Does anyone know how to get this?
Upvotes: 1
Views: 900
Reputation: 18583
ReSharper can show a "QuickDoc" view, which provides the full xml documentation, nicely formatted. The tooltip view is just the summary. To activate the QuickDoc, use ctrl-q, or ReSharper -> Edit -> Show Quick Documentation. See here for more: http://www.jetbrains.com/resharper/webhelp/Coding_Assistance__Quick_Documentation.html
Upvotes: 1