<typeparam> (C# Programming Guide)
Visual Studio 2005
<typeparam name="name">description</typeparam>
Parameters
- name
-
The name of the type parameter. Enclose the name in double quotation marks (" ").
- description
-
A description for the type parameter.
The <typeparam> tag should be used in the comment for a generic type or method declaration to describe a type parameter. Add a tag for each type parameter of the generic type or method.
For more information, see Generics (C# Programming Guide).
The text for the <typeparam> tag will be displayed in IntelliSense, the Object Browser code comment web report.
Compile with /doc to process documentation comments to a file.
See <typeparamref> (C# Programming Guide) for a code example showing how to use <typeparam>.