I receive from a pop server messages with encoding title.
How can I decode this title which is encoded into 8859-1 ?
Olivier Blondin.
oblondin.ext@rd.francetelecom.com
This seems to do it:
Encoding enc = Encoding.GetEncoding("iso-8859-1");
string decoded = enc.GetString(data);

Signature
Ian Griffiths - http://www.interact-sw.co.uk/iangblog/
DevelopMentor - http://www.develop.com/
>I receive from a pop server messages with encoding title.
>
> How can I decode this title which is encoded into 8859-1 ?