Convert.ToString和ToString的区别

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

3

posted @ 2014-08-12 15:57  Darren Ji  阅读(608)  评论(0编辑  收藏  举报

我的公众号:新语新世界,欢迎关注。