編譯器警告 (層級 1) CS1645
更新:2007 年 11 月
錯誤訊息
'feature' 功能不是標準化 ISO C# 語言規格的一部分,其他編譯器可能不接受
您使用的功能不是 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
{
}