XML Document...<see> tag not working

B

Bob Rundle

The following construct generates a good XML file, but "Build Comment Web
Pages..." does not do anything sensible with the <see> tag. Is there a bug
in this tool?

Bob Rundle

using System;
using System.Diagnostics;
namespace DotnetBench
{

public class a1
{
/// <summary>
/// <see cref="Field"></see>
/// </summary>
int field;
/// <summary>
/// this is a property
/// </summary>
int Field
{
get { return field; }
set { field = value; }
}
}
}
 
B

Bob Rundle

Richard,

Someone in an earlier post suggested ndoc.sf.net. I just downloaded it and
tried. It rocks! My <see> tag now works. But this tool represents a huge
improvement over the built in tool.

Regards,
Bob Rundle



Richard said:
I use the tool sometimes too. I have never seen HTML generated for
<exception>, <see>, <seealso> and several other tags... If/When you find a
descent tool to convert XML documentation to worthwhile web pages I'd love
to know!!!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top