I'm using a StreamReader to process files from different countries in this simple way:
StreamReader sr = new StreamReader(@"c:\test",System.Text.Encoding.UTF8);
while((row=sr.ReadLine()) != null)
{
//process the line
}
sr.Close();
However the reader just ignores non-standard...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.