items[3]="";
string[] modules=items[3].Split(':');
Console.Writeln("modeules.Length={0}",modeules.Length);
输出:
modeules.Length=1
字符串的底层逻辑说明:
字符串是引用类型,声明一个字符串变量,实际上是给在内存中声明了一个指针。
string str=NULL;//表示内存中声明了一个指针str,但指针str没有指向任何地址。
string str="";//表示内存中声明了一个指针str,但指针str指向了一个字符堆,堆中没有数据为空。
str.Length==0;//空串比较方法(最快)
str==String.Empty();//空串比较方法(其次)
str=="";//空串比较方法(其次)