Avviso del compilatore (livello 1) CS1030

#avviso: 'testo'

Visualizza il testo di un avviso definito con la direttiva #warning .

L'esempio seguente mostra come creare un avviso definito dall'utente:

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

La compilazione produce l'output seguente:

example.cs(6,16): warning CS1030: #warning: 'Let's give a warning here'