我有以下代码来创建一个 .Bin 文件
Dim ImageBytes As New List(Of Byte())
Dim CurrentByte As Byte
For m = 1 To Len(strImageName)
CurrentByte = Asc(Mid(strImageName, m, 1))
ImageBytes.Add(CurrentByte)
Next
但是,Visual Studio 2019 - VB.net 会抛出错误:
本地 Var CurrentChar 作为字节无法转换为 ImageBytes()。
我已经搜索了解决方案,但没有一个工作,他们似乎都提出了同样的错误,所以我在这里发帖希望得到一些帮助。