从 W3Schools.cn 在线教程学习 Web 网络开发
运行结果尺寸: 625 x 591
Program.cs
 


using System;

namespace MyApplication
{
  class Program
  {
    static void Main(string[] args)
    {
      bool isCSharpFun = true;
      bool isFishTasty = false;
      Console.WriteLine(isCSharpFun);   // Outputs True
      Console.WriteLine(isFishTasty);   // Outputs False    
    }
  }
}


Result:
True
False