更新:2007 年 11 月
表示布尔值 true。
示例
C# | 复制代码 |
---|---|
class TrueTest { static void Main() { bool a = true; Console.WriteLine( a ? "yes" : "no" ); } } /* Output: yes */ |
C# 语言规范
有关更多信息,请参见 C# 语言规范中的以下各章节:
2.4.4.1 布尔文本
更新:2007 年 11 月
表示布尔值 true。
C# | 复制代码 |
---|---|
class TrueTest { static void Main() { bool a = true; Console.WriteLine( a ? "yes" : "no" ); } } /* Output: yes */ |
有关更多信息,请参见 C# 语言规范中的以下各章节:
2.4.4.1 布尔文本