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'
Sarađujte sa nama na GitHub-u
Izvor za ovaj sadržaj možete da pronađete u usluzi GitHub, gde možete i da kreirate i pregledate probleme i povučete zahteve. Više informacija potražite u našem vodiču za saradnike.