{ 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! */ }