英語で読む

次の方法で共有


コンパイラ エラー CS0653

抽象であるため属性クラス 'class' を適用でません

abstract カスタム属性クラスは、属性として使用できません。

次の例では 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()  
   {  
   }  
}