다음을 통해 공유


CodeTypeParameter.CustomAttributes 속성

정의

형식 매개 변수의 사용자 지정 특성을 가져옵니다.

public:
 property System::CodeDom::CodeAttributeDeclarationCollection ^ CustomAttributes { System::CodeDom::CodeAttributeDeclarationCollection ^ get(); };
public System.CodeDom.CodeAttributeDeclarationCollection CustomAttributes { get; }
member this.CustomAttributes : System.CodeDom.CodeAttributeDeclarationCollection
Public ReadOnly Property CustomAttributes As CodeAttributeDeclarationCollection

속성 값

형식 매개 변수의 사용자 지정 특성을 나타내는 CodeAttributeDeclarationCollection입니다. 기본값은 null입니다.

예제

다음 코드 예제에서는 사용 CustomAttributes 하는 새 사용자 지정 특성을 추가 하는 속성입니다. 이 예제는에 대해 제공 된 큰 예제의 일부는 CodeTypeParameter 클래스입니다.

kType.CustomAttributes.Add(new CodeAttributeDeclaration(
    "System.ComponentModel.DescriptionAttribute",
        new CodeAttributeArgument(new CodePrimitiveExpression("KeyType"))));
kType.CustomAttributes.Add _
    (New CodeAttributeDeclaration("System.ComponentModel.DescriptionAttribute", _
        New CodeAttributeArgument(New CodePrimitiveExpression("KeyType"))))

설명

이 속성을 사용하여 형식 매개 변수 선언에 메타데이터 특성을 추가할 수 있습니다.

주의

이 속성은 null 기본적으로 이며 참조하기 전에 확인해야 합니다.

적용 대상

추가 정보