摘要:
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[... 阅读全文