<typeparam>(C# 프로그래밍 가이드)
<typeparam name="name">description</typeparam>
매개 변수
name
형식 매개 변수의 이름입니다.name은 큰따옴표(" ")로 묶습니다.description
형식 매개 변수에 대한 설명입니다.
설명
<typeparam> 태그는 제네릭 형식 또는 메서드 선언에 대한 주석에서 형식 매개 변수를 설명하는 데 사용됩니다.제네릭 형식 또는 메서드의 각 형식 매개 변수에 대해 태그를 추가합니다.
자세한 내용은 제네릭(C# 프로그래밍 가이드)를 참조하십시오.
<typeparam> 태그의 텍스트는 IntelliSense 및 Object Browser Window 코드 주석 웹 보고서에 표시됩니다.
/doc로 컴파일하여 문서 주석을 파일로 저장합니다.
예제
// 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];
}
}