How do I put XML code into IntelliSense comments?

108 Views Asked by At

I have the following code block.

    /// <summary>
    /// AMethod produces this XML:
    /// <A><B></B></A>
    /// </summary>
    public void AMethod()
    {
    }

When I do this IntelliSense does not print the XML, if I hover over AMethod. How do I get it to print the XML?

2

There are 2 best solutions below

0
On

You need to escape the XML

    /// <summary>
    /// AMethod produces this XML:
    /// &lt;A&gt;&lt;B&gt;&lt;/B&gt;&lt;/A&gt;
    /// </summary>
    public void AMethod()
    {
    }

This will then render the IntelliSense as follows:

enter image description here

0
On

The easiest way is to use a CDATA section:

    /// <summary>
    /// <![CDATA[
    /// <A><B></B></A>
    /// ]]>
    /// </summary>