Greetings Gurus!
I'm trying to read text from a file with a StreamReader and the unicode characters are getting lost on the way. How can I get them into a String in my app?
many thanks,
Rach
Printable View
Greetings Gurus!
I'm trying to read text from a file with a StreamReader and the unicode characters are getting lost on the way. How can I get them into a String in my app?
many thanks,
Rach
first take a look at this and see if it helps
http://vbforums.com/showthread.php?t...hlight=unicode
second, post your code:D I dunno what you're doing.
This works:
sr = New StreamReader(infile, System.Text.Encoding.Default)
Thanks for your help
Rach