三种常用的字符串判空串方法:
1: bool isEmpty = (str.Length == 0); 2: bool isEmpty = (str == String.Empty); 3: bool isEmpty = (str == "");
哪种方法最快?