In Visual C++, you can add comments to your source code that will be processed to an .xml file. This file can then be the input to a process that creates documentation for the classes in your code.
In a Visual C++ code file, XML documentation comments must be located directly prior to a method or type definition. The comments can be used to populate the IntelliSense QuickInfo data tip in the following scenarios:
-
when the code is compiled as a Windows Runtime component with an accompanying .winmd file
-
when the source code is included in the current project
-
in a library whose type declarations and implementations are located in the same header file
Note
In the current release, code comments are not processed on templates or anything containing a template type (for example, a function taking a parameter as a template). Adding such comments will result in undefined behavior.
For details on creating an .xml file with documentation comments, see the following topics.
If you need to put XML special characters in the text of a documentation comment, you must use XML entities or a CDATA section.
