My app reads a text file, line by line, which contains the special character ú (in "Dún Laoghaire", a province in Ireland). I use Notepad++ to edit and save the text file with either ANSI or UTF8 encoding, and both encoding yield same result.
After the following line of code is executed, the ú has been changed to "?" with solid background.
What am I missing?
TIA
After the following line of code is executed, the ú has been changed to "?" with solid background.
code to read text file:Dim text As List = File.ReadList(File.DirAssets,fileName)
What am I missing?
TIA