日期:2014-05-17 浏览次数:20788 次
if (buf[0] == 0xF5)
{
if (index >= 7)
{
length = buf[6] + 9;
if (index == length)
{
td = new Thread(delegate() { Panduan(buf, index); });
//注意着个Panduan()的方法 有两个参数 一个是BUF 一个是I
td.IsBackground = true;
td.Start();
index = 0;
length = 0;
}
else if (index > length)
{
index = 0;
length = 0;
&nbs