if you are thinking of something like C # or VB that show the description of parameters and functions, MSVC doesn’t have such a thing, but Microsoft has a special format for code comments, as follows from what you can use to generate help:
/// <summary> /// summary of variable, function, class or any thing else /// </summary> /// <remarks> /// detailed description of object /// </remarks> /// <param name="a">description of a</param> /// <param name="b">description of b</param> /// <param name="c">description of c</param> /// <returns>describe return value of function</returns>
when you compile your code, it will generate an XML document that can be used to create reference documents.
source share