码迷,mamicode.com
首页 > 其他好文 > 详细

Convert.ToString和ToString的区别

时间:2014-08-12 16:46:34      阅读:169      评论:0      收藏:0      [点我收藏+]

标签: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();
        }

bubuko.com,布布扣

Convert.ToString和ToString的区别,布布扣,bubuko.com

Convert.ToString和ToString的区别

标签:style   blog   http   color   os   2014   ar   line   

原文地址:http://www.cnblogs.com/darrenji/p/3907506.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!