How to Decode iso-8859-1 text

  • Thread starter Thread starter Olivier
  • Start date Start date
O

Olivier

I receive from a pop server messages with encoding title.

How can I decode this title which is encoded into 8859


Olivier Blondin.
(e-mail address removed)
 
Hi,

Create a byte array containing the message bytes and convert it to a string
by using the System.Text.Encoding.GetString() method. You should call this
method on an Encoding class instance representing the ISO-8859-1 encoding.
 

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

Back
Top