You've already forked linux-packaging-mono
10 lines
122 B
C#
10 lines
122 B
C#
![]() |
// CS0153: A goto case is only valid inside a switch statement
|
||
|
// Line: 7
|
||
|
|
||
|
class X {
|
||
|
void Main ()
|
||
|
{
|
||
|
goto case 5;
|
||
|
}
|
||
|
}
|