編譯器警告 (層級 1) CS0184
更新:2007 年 11 月
錯誤訊息
指定的運算式絕不為提供的 ('type') 型別
運算式不得為 true,因為您測試的變數不是宣告為 type,也不是衍生自 type。
下列範例會產生 CS0184:
// CS0184.cs
// compile with: /W:1
class MyClass
{
public static void Main()
{
int i = 0;
if (i is string) // CS0184
i++;
}
}