up vote 14 down vote favorite
3
share [g+] share [fb]

In C# documentation tags allow you to produce output similar to MSDN. What are a list of allowable tags for use inside the /// (triple slash) comment area above classes, methods, and properties?

link|improve this question

68% accept rate
feedback

8 Answers

up vote 0 down vote accepted

Check out http://thoughtpad.net/alan-dean/cs-xml-documentation.html. Great documentation on the various C# XML documentation tags. (Go to the bottom to see the tags)

EDIT

Removed HREF link because it is now returning a 404. Refer to John Sheehan's answer below.

link|improve this answer
3  
Alas, the domain has expired and this is a broken link. – Mike Post Mar 19 '10 at 0:41
Well that stinks - Google cache still has it, but for how long, who knows? – David Mohundro Mar 19 '10 at 2:11
feedback

If you type this just above a method or class, intellisense should prompt you with a list of available tags:

/// <
link|improve this answer
feedback

Here's a list:

  • summary
  • param
  • returns
  • example
  • code
  • see
  • seealso
  • list
  • value
  • author
  • file
  • copyright

Here's an example:

<file>
<copyright>(c) Extreme Designers Inc. 2008.</copyright>
<author>Kevin Driedger</author>
<datecreated>2008-09-15</datecreated>
<summary>
Here's my summary
</summary>
<remarks>
<para>The <see cref="TextReader"/> can be used in the following ways:</para>
<list type="number">
<item>first item</item>
<item>second item</item>
</list>
</remarks>
<example>
<code>
System.Console.WriteLine("Hello, World");
</code>
</example>
<param name="aParam">My first param</param>
<returns>an object that represents a summary</returns>
</file>
link|improve this answer
There is no author tag for the c# – Nassign Mar 30 '10 at 0:45
feedback

GhostDoc helps by creating a stub comment for your method/class.

link|improve this answer
feedback

MSDN article from 2002 detailing all the tags and when to use them:

http://msdn.microsoft.com/en-us/magazine/cc302121.aspx

link|improve this answer
feedback

See the excellent MSDN article here as your first stop.

link|improve this answer
feedback

Look inside the docs for Sandcastle. This is the new documentation standard for .NET.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.