文件名称:c#编写串口调试助手源码
文件大小:88KB
文件格式:RAR
更新时间:2013-03-16 17:17:26
串口调试助手源码
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 != ' ') { sParse = Convert.ToString(cc); } else { sParse = ""; } } else { sParse += Convert.ToString(cc); if (i == strIn.Length && cc != ' ') { myAL.Add(sParse); } } } return myAL; }
【文件预览】:
ComAssistant
----ComAssistant()
--------MyClass.cs(1KB)
--------ComAssistant.csproj.user(554B)
--------Form1.cs(7KB)
--------bin()
--------obj()
--------Properties()
--------Program.cs(493B)
--------Form1.designer.cs(15KB)
--------Form1.resx(6KB)
--------app.config(669B)
--------ClassDiagram1.cd(1KB)
--------ComAssistant.csproj(4KB)
----ComAssistant.suo(22KB)
----ComAssistant.sln(926B)
----UpgradeLog.XML(4KB)