編譯器錯誤 CS1027
必須是 #endif 指示詞
找不到指定 #if
指示詞的相符 #endif
前置處理器指示詞。 或者, #endregion
區塊內沒有對應 #region
指示詞時,編譯器可能發現 #if
指示詞。
下列範例會產生 CS1027:
// CS1027.cs
#if true // CS1027, uncomment next line to resolve
// #endif
namespace x
{
public class clx
{
public static void Main()
{
}
}
}