Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# error ) expected

// CS1513  
namespace y   // CS1513, the namespace has no close curly brace  
{  
   class x  
   {  
      public static void Main()  
      {  
      }  
   }  

// Fix:
namespace y
{  
   class x  
   {  
      public static void Main()  
      {  
      }  
   }  
}
 
PREVIOUS NEXT
Tagged: #error #expected
ADD COMMENT
Topic
Name
1+2 =