温馨提示×

c#中bool类型怎么赋值

c#
小亿
175
2024-05-17 10:04:11
栏目: 编程语言

在C#中,bool类型的变量可以通过以下方式赋值:

bool myBool = true; // 赋值为true
bool myBool2 = false; // 赋值为false

也可以通过条件表达式赋值:

bool myBool3 = (1 == 1); // 赋值为true,因为1等于1
bool myBool4 = (10 < 5); // 赋值为false,因为10不小于5

0