Lezen in het Engels

Delen via


Compilerfout CS0547

'eigenschap' : eigenschap of indexeerfunctie kan geen ongeldig type hebben

void is ongeldig als een retourwaarde voor een eigenschap.

Zie Eigenschappen voor meer informatie.

In het volgende voorbeeld wordt CS0547 gegenereerd:

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