編譯器錯誤 CS0153
goto case 只有在 switch 陳述式中有效
已嘗試在 switch
陳述式外部使用 switch
statement 語法。
下列範例會產生 CS0153:
// CS0153.cs
public class a
{
public static void Main()
{
goto case 5; // CS0153
}
}
goto case 只有在 switch 陳述式中有效
已嘗試在 switch
陳述式外部使用 switch
statement 語法。
下列範例會產生 CS0153:
// CS0153.cs
public class a
{
public static void Main()
{
goto case 5; // CS0153
}
}