类型为' System.IndexOutOfRangeException'的未处理异常发生在UsbLibrary.dll中

时间:2014-09-29 10:06:07

标签: c# libusb

当我使用

时发生
        string text = this.tb_send.Text + " ";
        text.Trim();
        string[] arrText = text.Split(' ');
        byte[] data = new byte[arrText.Length];

            for (int i = 0; i < arrText.Length; i++)
            {
                if (arrText[i] != "")
                {
                    int value = Int32.Parse(arrText[i],System.Globalization.NumberStyles.Number);
                    data[i] = (byte)Convert.ToByte(value);
                }
            }

            if (this.usb.SpecifiedDevice != null)
            {
                this.usb.SpecifiedDevice.SendData(data);
            }
            else
            {
                MessageBox.Show("Sorry but your device is not present. Plug it in!!!");
            }

请帮助我!这是我的项目http://1drv.ms/1rmw94F当然还没有完成。

0 个答案:

没有答案