I have a text file being read into my Visual Studion 2012 program that has letters such as ÀÁÄàáäÈÉËèéëÌÍÏìíïÒÓÖòóöÙÚÜùúü, which I'd like to convert to regular English letters such as A, E, I, O, U (case is irrelevant). When my code encounters one of these, I see it in debug as a black diamond with a question in it. Various methods to decode the letter into something where I can then use Regex.Replace() haven't been successful, or I haven't found the right technique yet while searching the net.
Thanks for any help.