I'm trying to display some text in a list. The text is read from a file using TextReader. It works nicely, except that international characters (in my case, å, ä, ö, Å, Ä, Ö) comes up as garbage. If I put the same characters in as constant strings in code, it works fine. If I check the codes using asc, they come up the same in the string constant as in the file (for example, å is 229).
So, my guess is that TextReader doesn't understand them. I'm going to do some more testing, but thought that I'd ask before I sink too much work into it.
Known issue? Workaround? Am I messing up?
So, my guess is that TextReader doesn't understand them. I'm going to do some more testing, but thought that I'd ask before I sink too much work into it.
Known issue? Workaround? Am I messing up?