#error (C# 參考)
更新: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
}
}