1、代码
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace ConsoleApplication2 8 { 9 class Program 10 { 11 static void Main(string[] args) 12 { 13 string name = null; 14 string name2 = string.Empty; 15 Console.ReadKey(); 16 } 17 } 18 19 }
2、效果
string.empty的效果是 string name2="";
时间: 2024-10-09 22:36:30