Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
}
}