This topic has not yet been rated - Rate this topic

Compiler Error CS0153

A goto case is only valid inside a switch statement

An attempt was made to use switch syntax outside of a switch statement. For more information, see switch (C# Reference).

The following sample generates CS0153:

// CS0153.cs
public class a
{
   public static void Main()
   {
      goto case 5;   // CS0153
   }
}
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ