编译器错误 CS0653
无法应用特性类“类”,因为它是抽象的
抽象的 自定义特性类不能用作特性。
下面的示例生成 CS0653:
// CS0653.cs
using System;
public abstract class MyAttribute : Attribute
{
}
public class My2Attribute : MyAttribute
{
}
[My] // CS0653
// try the following line instead
// [My2]
class MyClass
{
public static void Main()
{
}
}