C# Bullet list in PARAM section of code documentation

This works fine.

I tried this code:

public class Program
{
    /// <summary>The summary</summary>
    /// <param name="args">
    /// The command-line arguments.
    /// <list type="bullet">
    /// <item><description>Item 1</description></item>
    /// <item><description>Item 2</description></item>
    /// <item><description>Item 3</description></item>
    /// </list>
    /// </param>

    public static void Main(string[] args)
    {
    }
}

Then I used Sandcastle to produce a help file which looks like this:

Output Documentation

As you can see, the bulleted list appears correctly for the parameter.

This is how Resharper shows the tooltip:

Resharper shows a bulleted list

Tags:

C#