컴파일러 오류 CS2016

업데이트: 2007년 11월

오류 메시지

'codepage' 코드 페이지가 잘못되었거나 설치되어 있지 않습니다.
Code page 'codepage' is invalid or not installed

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

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

// CS2016.cs
// compile with: /codepage:x
// CS2016 expected
class MyClass
{
   public static void Main()
   {
   }
}