İngilizce dilinde oku

Aracılığıyla paylaş


Derleyici Hatası CS0653

Soyut olduğundan 'class' öznitelik sınıfı uygulanamıyor

Soyut özel öznitelik sınıfı öznitelik olarak kullanılamaz.

Aşağıdaki örnek CS0653 oluşturur:

// 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()  
   {  
   }  
}