编译器错误 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 {};