使用英语阅读

通过


编译器警告(等级 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.
    }
}