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. VSdocman comment may contain any number of @typeparam tags. Equivalent XML tag is <typeparam>.

Syntax

@typeparam type-parameter-name description

The description may be continued on the next line. This tag is used in generic members when type arguments are used.

Example:

    '**
'My generic class. '
'@typeparam t1 Type to compare. It must implement IComparable.
'@typeparam t2 Any type.
Public Class itemManager(Of t1 As IComparable, t2)

See Also

<typeparam> tag