说明: public static ArrayList Str16ToArrayList(string strIn) { string sParse = ""; ArrayList myAL = new ArrayList(); int i = 0; foreach (char cc in strIn) { i++; if (cc == ' ' || sParse.Length == 2) { myAL.Add(sParse); if (sParse.Length == 2 && cc != ' ')
<QTZXD> 上传 | 大小:88kb