I am trying to convert a string into a byte array so it can be passed into function to compress the string. Is there anyway to accomplish this.
Printable View
I am trying to convert a string into a byte array so it can be passed into function to compress the string. Is there anyway to accomplish this.
will this help
Code:Dim ascEnd As New System.Text.ASCIIEncoding()
Dim arr_byt() As Byte = ascEnd.GetBytes("MyString")