Hello all,

Can anybody point me in the right direction for reading and writing diacirtics. At the moment I'm reading the data in ok, but if the data consists of diacritics, it will loose the diacritic and output some gibberish instead.

At the moment I'm only using a normal streamreader

i.e

Code:
Streamreader sr = new Streamreader(strFileName);

while ( (strLine = sr.ReadLine()) != null )
{
     //other processing goes here
}
Any help is greatly appreciated thanks,