c# - Incorporating ISO 8859-1 Symbols / foreign languages into a WinForms application -
i have function finds iso 8859-1 symbol within given string, , tries converting proper meaning. however, question marks instead i'd actual values like: ÿ é æ etc.
can point me in right direction on how handle foreign/unique symbols?
from wording of question, sounds attempting identify byte values in string , convert them - won't work. strings composed of characters , each character can consist of more 1 byte (depending on encoding). in other words, conversion stream of bytes human-readable string performed time access string.
have @ system.text.encoding class. if want convert byte stream 1 encoding another, try system.text.encoding.convert().
but nice know more details specific task people can give more precise answer.
Comments
Post a Comment