VSdocman Help  

<typeparam> Tag

Adds a type parameter description to the type parameters section. This tag is only valid in VS 2005 and higher when used for generic member. Comment may contain any number of <typeparam> tags. Equivalent @-style tag is @typeparam.

Syntax

<typeparam name="name">description</param>

where:

name

The name of a type parameter. Enclose the name in quotation marks (" ").

description

A description for the type parameter.

This tag is used in generic members when type arguments are used.

Example:

    '''<summary>My generic class.</summary>
'''<typeparam name="t1">Type which will be compared.</typeparam>
'''<typeparam name="t2">Any type.</typeparam> Public Class itemManager(Of t1 As IComparable, t2)

The text in bold is added automatically when using Add XML Comment from pop-up menu.

See Also

@typeparam tag