다음을 통해 공유


컴파일러 오류 C3235

'specialization': 제네릭 클래스의 명시적 특수화 또는 부분 특수화는 허용되지 않습니다.

명시적 특수화 또는 부분 특수화에 제네릭 클래스를 사용할 수 없습니다.

예시

다음 샘플에서는 C3235를 생성합니다.

// C3235.cpp
// compile with: /clr
generic<class T>
public ref class C {};

generic<>
public ref class C<int> {};   // C3235 Remove this specialization to resolve this error.