İngilizce dilinde oku

Aracılığıyla paylaş


Derleyici Uyarısı (düzey 3) CS0168

'var' değişkeni bildirilir ancak hiçbir zaman kullanılmaz

Derleyici, bir değişken bildirdiğinizde bir düzey-üç uyarısı yapar, ancak bunu kullanmaz.

Aşağıdaki örnek bir CS0168 uyarısı oluşturur:

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