更新:2007 年 11 月
错误消息
应输入 #endif 指令没有为指定的 #if 指令找到匹配的 #endif 
下面的示例生成 CS1027:
// CS1027.cs
#if true   // CS1027, uncomment next line to resolve
// #endif
namespace x
{
   public class clx
   {
      public static void Main()
      {
      }
   }
} | |