Lire en anglais

Partager via


Avertissement du compilateur (niveau 1) CS0168

La variable « var » est déclarée, mais jamais utilisée

Le compilateur émet un avertissement de niveau trois lorsque vous déclarez une variable, mais ne l’utilisez pas.

L’exemple suivant génère un avertissement CS0168 :

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