When typing code, I really like the intellisense feature of Visual Studio 2010 (Professional), especially that I am able to look up XML comments of types in use. (See Documentation from Microsoft). This works so far. However, the remarks section of XML code comments does not show up.
I would consider this an extremely useful feature, since there is often useful information that can not get easily guessed from the summary. (Which is why we have a the remarks section, i guess)
How to explore the remarks portion in Visual Studio 2010 (Professional) at the intellisense level? (I use DevXpress Coderush, if that matters, but I don't think so).
<remarks>
section is not intended to be displayed from IntelliSense, and instead to contain information that does not need to be immediately at hand. You can read the remarks from the Object Browser or the actual documentation that you generate automatically from the XML comments. – OveruseF12
key automatically shows the source (if available) of the selected object, or displays it in the Object Browser. (Well, actually, that depends on your selected VS settings. More info here.) – Overuse