I'm writing an app in vb.net 1.1 and need to convert a byte array into a
string, and then from a string back to a byte array.
for example
Private mByte() as New Byte(4){11,22,3 3,44}
Now how do I convert it to:
dim myStr as string = "11,22,33,4 4"
and then back to the byte array?
Thanks.
--
moondaddy@nospa m.nospam
string, and then from a string back to a byte array.
for example
Private mByte() as New Byte(4){11,22,3 3,44}
Now how do I convert it to:
dim myStr as string = "11,22,33,4 4"
and then back to the byte array?
Thanks.
--
moondaddy@nospa m.nospam
Comment