Lezen in het Engels

Delen via


Compilerfout CS1585

Lidmodifier 'trefwoord' moet voorafgaan aan het lidtype en de naam

De toegangsaanduiding in een methodehandtekening is niet op de juiste locatie opgetreden.

In het volgende voorbeeld wordt CS1585 gegenereerd:

// CS1585.cs  
public class Class1  
{  
   public void static Main(string[] args)   // CS1585  
   // try the following line instead  
   // public static void Main(string[] args)  
   {  
   }  
}