Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我写这个时会弹出一个错误:
ListView1.Items(0).SubItems.Add(Convert.ToChar(byteData(i)))
错误是:
重载解析失败,因为没有可访问的“转换”接受此数量的参数。
将Convert.ToChar用于将字节转换为字符。例如以下鳕鱼将毫无问题地工作:
Convert.ToChar
Dim byteArray(10) As Byte byteArray(0) = 65 'code of 'A' char Dim ch As Char ch = Convert.ToChar(byteArray(0)) 'ch becomes 'A'c
你能解释更多关于byteData(i)你的代码中的类型吗?也许它不是您预期的一个字节。请检查它或从您定义它的地方提供更多信息?
byteData(i)