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
   }
}