标签:style blog http color os 2014 ar line
Convert.ToString能处理字符串为null的情况。
static void Main(string[] args){string msg = null;Console.WriteLine(Convert.ToString(msg));Console.ReadKey();}
运行,没有抛出异常。
ToString方法不能处理字符串为null的情况,会抛出异常。
static void Main(string[] args){string msg = null;//Console.WriteLine(Convert.ToString(msg));
Console.WriteLine(msg.ToString());Console.ReadKey();}
Convert.ToString和ToString的区别,布布扣,bubuko.com
标签:style blog http color os 2014 ar line
原文地址:http://www.cnblogs.com/darrenji/p/3907506.html