Číst v angličtině

Sdílet prostřednictvím


Chyba kompilátoru CS0641

'attribute' : atribut je platný pouze pro třídy odvozené ze System.Attribute

Byl použit atribut, který lze použít pouze u třídy, která je odvozena ze System.Attribute.

Následující ukázka vygeneruje CS0641:

// CS0641.cs  
using System;  
  
[AttributeUsage(AttributeTargets.All)]  
public class NonAttrClass   // CS0641  
// try the following line instead  
// public class NonAttrClass : Attribute  
{  
}  
  
class MyClass  
{  
   public static void Main()  
   {  
   }  
}