更新:2007 年 11 月

#error 使您可以从代码中的特定位置生成错误。例如:

 复制代码
#error Deprecated code in this method.

备注

#error 通常用在条件指令中。

也可以用 #warning(C# 参考) 生成用户定义的警告。

示例

 复制代码
// preprocessor_error.cs
// CS1029 expected
#define DEBUG
class MainClass 
{
    static void Main() 
    {
#if DEBUG
#error DEBUG is defined
#endif
    }
}

请参见