Lezen in het Engels

Delen via


Compilerfout CS0722

'type': statische typen kunnen niet worden gebruikt als retourtypen

Een statisch type als retourtype is niet zinvol omdat instanties van statische typen niet kunnen worden gemaakt.

In het volgende voorbeeld wordt CS0722 gegenereerd:

// CS0722.cs  
public static class SC  
{  
}  
  
public class CMain  
{  
   public SC F()  // CS0722  
   {  
      return null;  
   }  
  
   public static void Main()  
   {  
   }  
}