• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Hide Comments/Summaries in Visual Studio

tatteredpotato

Diamond Member
Just curious if it's possible to hide all the XML Documentation from the actual code files while working on them. For instance I want the function/parameter summaries for my classes and methods so that they pop up via Intellisense, but find them slightly distracting when working on the actual code files.

I'm assuming this feature isn't in Visual Studio, but figured I might as well check here (google didn't really return anything).
 
When you compile your projects, VS will generate XML files for the comments (assuming you have this feature enabled - it is the default). I believe if you exclude the XML file, the comments/summaries will go away.

Edit: Scratch that... I misunderstood your original question.
 
Back
Top