Cannot get <example> tags to show any information.

  • Thread starter Thread starter bcg
  • Start date Start date
B

bcg

I have a couple of places where I used the following text in my code,
but the example and code text does not show up in the resultant
comment web pages...why? The summary and parameter information show
fine.

/// <summary>
/// Summary information
/// </summary>
/// <example> The is an example.
/// <code>
/// This is some code.
/// </code>
/// </example>
public MyClass(): this("Stuff")
{
}

Thanks for your help.
Bruce
 
They don't appear to extract that information

You can generate an xml document of all the xml comments from your project properties, then you'd have to write some xsl to create a web page of nicely presented comments!!

Hope that helps.
 
Back
Top