İngilizce dilinde oku

Aracılığıyla paylaş


Derleyici Hatası CS0547

'property' : özellik veya dizin oluşturucu geçersiz türe sahip olamaz

void , bir özellik için dönüş değeri olarak geçersiz.

Daha fazla bilgi için bkz . Özellikler.

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

C#
// CS0547.cs  
public class a  
{  
   public void i   // CS0547  
   // Try the following declaration instead:  
   // public int i  
   {  
      get  
      {  
         return 0;  
      }  
   }  
}  
  
public class b : a  
{  
   public static void Main()  
   {  
   }  
}