컴파일러 오류 CS1902

업데이트: 2007년 11월

오류 메시지

/debug에 대한 'option' 옵션이 잘못되었습니다. full 또는 pdbonly여야 합니다.
Invalid option 'option' for /debug; must be full or pdbonly

잘못된 옵션을 /debug 컴파일러 옵션에 전달했습니다.

다음 샘플에서는 CS1902 오류가 발생하는 경우를 보여 줍니다.

// CS1902.cs
// compile with: /debug:x
// CS1902 expected
class x
{
   public static void Main()
   {
   }
}