摘要:
三种常用的字符串判空串方法:Length法:bool isEmpty = (str.Length == 0);Empty法:bool isEmpty = (str == String.Empty);General法:bool isEmpty = (str == "");实践证明用Length方法判空... 阅读全文
posted @ 2007-07-02 10:12
sinodzh
阅读(545)
评论(0)
推荐(0)
浙公网安备 33010602011771号