private void SearchHidDevices() { //VendorId = Convert.ToInt32(vidtxtbox.Text); foreach (var productId in ProductIds) { _device = HidDevices.Enumerate(VendorId, productId).FirstOrDefault(); } if (_device != null) { hiddeviceslistbox.Items.Add(_device.ToString()); statuslbl.Text = "Found MCP2515DM-BM device"; } }