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


using System;

namespace MyApplication
{
  class Program
  {
    static void Main(string[] args)
    {
      int x = 10;
      Console.WriteLine(x == 10); // returns True, because the value of x is equal to 10
    }
  }
}


Result:
True