英語で読む

次の方法で共有


コンパイラの警告 (レベル 3) CS0168

変数 'var' は宣言されていますが、使用されていません

変数を宣言するときに、コンパイラからレベル 3 の警告が発行されますが、それは使用しないでください。

次の例では CS0168 警告が生成されます。

// CS0168.cs  
// compile with: /W:3  
public class clx
{
    public int i;
}

public class clz
{
    public static void Main() {
        clx a; // CS0168, the variable 'a' is declared but never used
        // try the following line instead
        // clx a = new clx();  // this does not generate a warning because the clx constructor must execute.
    }
}