FALSE literál (C#-Reference)
Představuje logickou hodnotu NEPRAVDA.
Příklad
class TestClass
{
static void Main()
{
bool a = false;
Console.WriteLine( a ? "yes" : "no" );
}
}
// Output: no
Specifikace jazyka C#
Další informace naleznete v tématu Specifikace jazyka C#. Specifikace jazyka je úplným a rozhodujícím zdrojem pro syntaxi a použití jazyka C#.