<typeparamref> (C# Programming Guide)
Visual Studio 2005
<typeparamref name="name"/>
Parameters
- name
-
The name of the type parameter. Enclose the name in double quotation marks (" ").
// compile with: /doc:DocFileName.xml /// comment for class public class TestClass { /// <summary> /// Creates a new array of arbitrary type <typeparamref name="T"/> /// </summary> /// <typeparam name="T">The element type of the array</typeparam> public static T[] mkArray<T>(int n) { return new T[n]; } }