对于布尔类型,使用 bool 关键字,它是 System.Boolean 的别名。
它用于声明变量以存储布尔值,true 和 false。
让我们看一个例子来学习如何在 C# 中使用 bool。
using System; public class Demo { static void Main() { bool val = true; int d = DateTime.Now.DayOfYear; val = (d % 2 == 0); if (val) { Console.WriteLine("days: even number"); } else { Console.WriteLine("days:odd number"); } } }