영어로 읽기

다음을 통해 공유


컴파일러 경고(수준 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.
    }
}