using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication3
{
    class Program
    {  //体验加引号与不加引号的区别;
        static void Main(string[] args)
        {
            int blance = 10000;
            Console.WriteLine("blance");
            Console.WriteLine(blance);
        }
    }
}

体验加引号与不加引号的区别










本文转自51GT51CTO博客,原文链接:http://blog.51cto.com/yataigp/1946898 ,如需转载请自行联系原作者










相关文章:

  • 2021-06-29
  • 2021-10-19
  • 2021-06-01
  • 2021-12-11
  • 2021-10-08
  • 2021-12-01
  • 2021-08-14
  • 2022-12-23
猜你喜欢
  • 2021-12-17
  • 2022-12-23
  • 2022-12-23
  • 2021-11-15
  • 2021-11-04
  • 2021-06-17
  • 2022-02-28
相关资源
相似解决方案