Value type - bool

suggest change
// default value of boolean is false
bool b;
//default value of nullable boolean is null
bool? z;
b = true;
if (b) {
    Console.WriteLine("Boolean has true value");
}

The bool keyword is an alias of System.Boolean. It is used to declare variables to store the Boolean values, true and false.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents