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.
 
Back
Top