#error (C# Reference)
Visual Studio 2012
#error lets you generate an error from a specific location in your code. For example:
#error Deprecated code in this method.
A common use of #error is in a conditional directive.
It is also possible to generate a user-defined warning with #warning (C# Reference).