Is there a built in way to convert a Byte Array to a Hex String or do I have to write my own?
Sean
Some days when I think about the next 30 years or so of my life I am going to spend writing code, I happily contemplate stepping off a curb in front of a fast moving bus.
Depending on the type of string encoding you want to use, you can use a member of the System.Text namespace to do your encoding. You can use a UTF7Encoding for Unicode strings, or the AsciiEncoding for Ascii strings.
Here is a simple ascii example:
vb Code:
Dim objByte As Byte() = System.Text.ASCIIEncoding.ASCII.GetBytes("MyString")