영어로 읽기

다음을 통해 공유


컴파일러 경고(수준 3) CS0169

전용 필드 'class member'가 사용되지 않습니다.

전용 변수가 선언되었지만 참조되지 않습니다. 이 경고를 생성하는 일반적인 방법은 클래스의 전용 멤버를 선언하고 사용하지 않는 경우입니다.

다음 샘플에서는 CS0169를 생성합니다.

// compile with: /W:3  
using System;  
public class ClassX  
{  
   int i;   // CS0169, i is not used anywhere
   // Remove the above variable declaration or uncomment TestMethod to clear warning CS0169
   /*
   public void TestMethod()
   {
       i = 5;
       System.Console.WriteLine(i);
   }
   */

   public static void Main()  
   {  
   }  
}