C#系列教程——BOOL定义
代码如下:
using System;public class MyClass{ static void Main() { bool J = true; char D = '0'; Console.WriteLine(J); J = false; Console.WriteLine(J); bool abc = (D > 64 && D < 123); Console.WriteLine(abc); }}