컴파일러 오류 C3237
'generic_class': 제네릭 클래스는 사용자 지정 특성이 될 수 없습니다.
제네릭 클래스는 사용자 정의 특성이 될 수 없습니다.
예시
다음 샘플에서는 C3237을 생성합니다.
// C3237.cpp
// compile with: /clr /c
// C3237 expected
using namespace System;
generic <class T>
// Delete the following line to resolve.
[attribute(AttributeTargets::All, AllowMultiple=true)]
public ref class GR {};