Convert.ToString(null) => null

            {
                string str0 = Convert.ToString(null);
                Console.WriteLine("0,{0}", str0);
                if (str0=="")
                {
                    Console.WriteLine("0,Empty!");
                }
                if (str0 == null)
                {
                    Console.WriteLine("0,null!");
                }
                else
                {
                    Console.WriteLine("0,Empty?");
                }
                /*
                0,
                0,null!
                 */
            }
原文地址:https://www.cnblogs.com/sky20080101/p/6557788.html