C# xml documentation - list tag problem

  • Thread starter Thread starter Marty McDonald
  • Start date Start date
M

Marty McDonald

I use the following, and then use Visual Studio's "Tools", "Build Comment
Web Pages". But on the generated pages, the list elements don't show up as
lists, just text that wrap around. Am I doing anything wrong? Thanks...
Following is a cut & paste from MS documentation that, when copied into my
code, just shows up as normal text.
/// <remarks>Here is an example of a bulleted list:
/// <list type="bullet">
/// <item>
/// <description>Item 1.</description>
/// </item>
/// <item>
/// <description>Item 2.</description>
/// </item>
/// </list>
/// </remarks>
public static void Main ()
{
}
 
Marty McDonald said:
I use the following, and then use Visual Studio's "Tools", "Build Comment
Web Pages".

"Build Comment Web Pages" sux IMO. They seem to support only a few
tags. Try ndoc ( http://ndoc.sourceforge.net/ ) - MUCH more complete.
Although I've never used the list syntax so I can't guarantee it works
on ndoc. But MUCH more likely (and tags like see / seealso work on
ndoc that don't work on VS Build Comment Web Pages).

mike
 
Back
Top