I am trying to add a list of strings that contain special characters such as accents to a RichEditText box. To be exact, it is list of peoples names. Some are in French & Spanish for instance. Unfortunately, these special characters are showing up incorrectly.
I am currently do the following:
aRichEditTextBox.Lines = nameList.ToArray();
For instance... Instead of "Añazgo", I am getting this "A�azgo".
What is the proper or best way to fix this issue?