Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 783 Bytes

cs1030.md

File metadata and controls

34 lines (28 loc) · 783 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Compiler Warning (level 1) CS1030
Compiler Warning (level 1) CS1030
08/20/2018
CS1030
CS1030
7c565abc-1366-4641-9383-ab8ba026ab96

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
   }  
}  

Compilation produces the following output:

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