C# Programmer's Reference  

Delimiters for Documentation Tags

The use of documentation tags requires delimiters, which indicate to the compiler where a documentation comment begins and ends. You can use the following kinds of delimiters with the XML documentation tags:

///
This is the form that is shown in documentation examples and used by the Visual C# project templates.
Note   The Visual Studio IDE has a feature called Smart Comment Editing that automatically inserts the <summary> and </summary> tags and moves your cursor within these tags after you type the /// delimiter in the Code Editor. Access this feature from the Formatting, C#, Text Editor, Options Dialog Box in your project property pages.
/** */
Added after the Visual Studio .NET release. These are multiline delimiters.

There are some formatting rules when using the /** */ delimiters:

Some examples:

See Also

/doc (Process Documentation Comments) | XML Documentation