i am reading a text file line by line like this

VB Code:
  1. dim reader As StreamReader = New StreamReader("c:\myfile.txt")
  2. Do While Not reader.EndOfStream
  3.   msbox reader.readline
  4. loop

the accents characters are removed..
e.g.

instead of displaying
"González"

it displays
"Gonzlez"

any idea why??