Lezen in het Engels

Delen via


Compilerwaarschuwing (niveau 3) CS0168

De variabele var wordt gedeclareerd, maar wordt nooit gebruikt

De compiler geeft een waarschuwing op niveau drie uit wanneer u een variabele declareert, maar deze niet gebruikt.

In het volgende voorbeeld wordt een CS0168-waarschuwing gegenereerd:

// 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.
    }
}