Javadoc-like info fields for visual C ++

Are there any plugins / options / etc. this will show me the following:

Documentation Info Box when do I hover over a C ++ function / method name in visual studio 2010?

I tried using the visual help X, but the information for this function is not indented, newlines are ignored, and terms like "return" and "Parameter" are not in bold or not colored. VS's built-in XML comment was even less readable.

+4
source share
2 answers

If you have CodeRush / Refactor, you can try the CR_Documenter plugin (use VS Extension Manager). It provides a new dockable window with such documentation.

0
source

Use SandCastle for integration with on-line help (F1). This is not as good as the built-in tooltip, as you get into the Eclipse screenshot, but you can hover over the type, press F1, and then you are there.

To do this, install Sandcastle and Sandboxle Help File Builder. Then, in the Sandbule Help File Builder project, check the box for MSHelpViewer. This will lead to documentation and a script that you can run to integrate your user documentation into F1 help.

0
source

Source: https://habr.com/ru/post/1402787/


All Articles