convert Byte() to string

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

how can I convert a 1-dimensional array of type byte() to string under VB.net?

Greetings,

Peter
 
Stephany Young said:
Use the System.Text.Encoding.ASCII.GetString method.

Or rather, use Encoding.GetString, using the appropriate instance of
the Encoding class, depending on what encoding was used to turn the
text into a sequnce of bytes to start with.
 
Back
Top