Visual C++ 2008 Intellisense is not displaying DocXml comments
- by DavidTM
In Visual C++ 2008, I have documented a method with DocXML:
/// <summary>Function to generate and map channel.</summary>
/// <param name="a_cfi">Raw CFI (1, 2 or 3)</param>
/// <param name="a_ns">Slot number in frame</param>
static void myFunc(unsigned a_cfi, unsigned a_ns);
Intellisense displays this, but it displays the actual tags (i.e. precisely as shown above) instead of recognizing the tags and formatting the text accordingly.
How can I fix this please?