Dim BC as ByteConverter
dim C() as char=BC.toChars(text)
To my surprise, C(0) is not the first char of the text, and the first char of the text is C(1).
It is quite confusing. Why add a char that does not belong to the text at the front of the array?
dim C() as char=BC.toChars(text)
To my surprise, C(0) is not the first char of the text, and the first char of the text is C(1).
It is quite confusing. Why add a char that does not belong to the text at the front of the array?