booelan variable c# code example
Example 1: How to make a bool true/false C#
// Make A Bool True
bool firstVariable = true;
// Make A Bool False
bool secondVariable = false;
// Make A Bool Null
bool thirdVariable;
Example 2: bool in c#
bool isCSharpFun = true;
bool isFishTasty = false;
Console.WriteLine(isCSharpFun); // Outputs True
Console.WriteLine(isFishTasty); // Outputs False