共用方式為


編譯器警告 (層級 2) CS0469

更新:2007 年 11 月

錯誤訊息

'goto case' 值無法隱含轉換為型別 'type'

當您使用 goto case 時,必須將 goto case 的值隱含轉換成參數的型別。

範例

下列範例會產生 CS0469:

// CS0469.cs
// compile with: /W:2
class Test
{
   static void Main()
   {
      char c = (char)180;
      switch (c)
      {
         case (char)127:
            break;

         case (char)180: 
            goto case 127;   // CS0469
            // try the following line instead
            // goto case (char) 127;
      }
   }
}