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!

Compiler Warning (level 1) CS1030

#warning: 'text'

CS1030 displays the text of a warning defined with the #warning directive.

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

namespace x {
   public class a {
      public static void Main() {
         #warning Let's give a warning here!   // CS1030
      }
   }
}