is there an easy way to get ASCII from a text word in vb.net?

  • Thread starter Thread starter Blarney
  • Start date Start date
B

Blarney

If I was wanting to convert the word "Hello" to ASCII how would I do it
in VB.NET?

Thanks!
 
You mean to bytes? Use the System.Text.Encoding classes... (GetString,
GetBytes methods)

Cheers
Daniel
 
Back
Top