<see> (C# Programming Guide)
Visual Studio 2005
<see cref="member"/>
Parameters
- cref = " member"
-
A reference to a member or field that is available to be called from the current compilation environment. The compiler checks that the given code element exists and passes member to the element name in the output XML. Place member within double quotation marks (" ").
The following example shows how to make a cref reference to a generic type.
// compile with: /doc:DocFileName.xml // the following cref shows how to specify the reference, such that, // the compiler will resolve the reference /// <summary cref="C{T}"> /// </summary> class A { } // the following cref shows another way to specify the reference, // such that, the compiler will resolve the reference // <summary cref="C < T >"> // the following cref shows how to hard-code the reference /// <summary cref="T:C`1"> /// </summary> class B { } /// <summary cref="A"> /// </summary> /// <typeparam name="T"></typeparam> class C<T> { }