Compiler Warning (level 1) CS1030

#warning: 'text'

Displays the text of a warning defined with the #warning directive.

The following sample shows how to create a user-defined warning:

// CS1030.cs
class Sample
{
   static void Main()
   {
      #warning Let's give a warning here   // CS1030
   }
}