UsingBool.cs

/*
 * C# Programmers Pocket Consultant
 * Author: Gregory S. MacBeth
 * Email: gmacbeth@comporium.net
 * Create Date: June 27, 2003
 * Last Modified Date:
 * Version: 1
 */
using System;

namespace Client.Chapter_1___Common_Type_System
{
    class UsingBool
    {
        static void Main(string[] args)
        {
            bool MyBool = false;

            if (MyBool)
            {
                Console.WriteLine(MyBool);
            }
            else
            {
                Console.WriteLine(MyBool);
            }
        }
    }

}
原文地址:https://www.cnblogs.com/shihao/p/2501831.html