how do i convert a string from the following formats:
UTF-16 encoded Unicode with BOM
UTF-16BE encoded Unicode without BOM
UTF-8 encoded Unicode
to ISO-8859-1, which is just standard text.
?
Printable View
how do i convert a string from the following formats:
UTF-16 encoded Unicode with BOM
UTF-16BE encoded Unicode without BOM
UTF-8 encoded Unicode
to ISO-8859-1, which is just standard text.
?
Not an answer, but have you looked into System.Text.Encoding? I've only used it to convert strings by byte arrays and back, but there's a lot of stuff in there.