#error(C# 참조)
#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
}
}