EnglishLearner
0
Q:

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()  
      {  
      }  
   }  
}
1
Console.WriteLine()
1

New to Communities?

Join the community