convert Byte() to string

G

Guest

Hi,

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

Greetings,

Peter
 
J

Jon Skeet [C# MVP]

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top