摘要: IsNullOrEmpty 判断字符串是否为null或者空 static void Main(string[] args) { string s1 = "张三"; if(string.IsNullOrEmpty(s1)) ... 阅读全文
posted @ 2014-10-13 21:58 amixc 阅读(165) 评论(0) 推荐(0) 编辑