摘要: 1 public string[] StringSplit(string strSource, string strSplit) 2 { 3 string[] strtmp = new string[1]; int index = strSource.IndexOf(strSplit, 0); 4 if (index < 0) { strtmp[0] = strSource; return strtmp; } 5 else 6 { 7 strtmp[... 阅读全文
posted @ 2013-05-29 21:49 东少 阅读(192) 评论(0) 推荐(0) 编辑