Lezen in het Engels

Delen via


Compilerfout CS1038

#endregion richtlijn verwacht

Een #region richtlijn heeft geen overeenkomende #endregion richtlijn.

In het volgende voorbeeld wordt CS1038 gegenereerd:

C#
// CS1038.cs  
#region testing  
  
public class clx  
{  
   public static void Main()  
   {  
   }  
}  
// CS1038  
// uncomment the next line to resolve  
// #endregion