컴파일러 경고(수준 1) CS1645

업데이트: 2007년 11월

오류 메시지

'feature' 기능은 표준화된 ISO C# 언어 사양의 일부가 아니므로 다른 컴파일러에서 지원하지 않을 수 있습니다.
Feature 'feature' is not part of the standardized ISO C# language specification, and may not be accepted by other compilers

사용하려는 기능이 ISO 표준의 일부가 아닙니다. 이 기능을 사용하는 코드는 다른 컴파일러에서 컴파일할 수 없습니다.

// CS1645.cs
// compile with: /W:1 /t:module /langversion:ISO-1
[assembly:System.CLSCompliant(false)]
// To supress the warning use the switch: /nowarn:1645
[module:System.CLSCompliant(false)]   // CS1645
class Test
{
}