NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

#error

#error lets you generate an error from a specific location in your code.

#error text

where:

text
The text of the error that should appear in the compiler's output.

Remarks

A common use of #error is in a conditional directive. It is also possible to generate a user-defined warning with #warning.

Example

#define DEBUG
public class MyClass {
   public static void Main() {
      #if DEBUG
      #error DEBUG is defined
   #endif
   }
}

See Also

C# Preprocessor Directives