<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.
'''<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.