标签:sys ace str key [] style 值类型 ram span
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 可空值类型 { class Program { static void Main(string[] args) { int? a = null; int? b = 5; Console.WriteLine(a);//空 Console.WriteLine(b);//5 Console.WriteLine(a == b);//false Console.ReadKey(); } } }
标签:sys ace str key [] style 值类型 ram span
原文地址:http://www.cnblogs.com/dog2016/p/7451799.html