2 out of 5 rated this helpful - Rate this topic

<typeparam> (C# Programming Guide)


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

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.