2016-12-16 5 views

答えて

1

使用System.Text.Encoding.GetEncoding()いずれか

System.Text.Encoding.GetEncoding("ISO-8859-6") 

それとも

System.Text.Encoding.GetEncoding(28596) 

、ISO-8859-6のためのSystem.Text.Encodingオブジェクトを取得し、その後、あなたは、オブジェクトのにエンコードされたISO-8859-6バイトを渡すことができますGetString()またはGetChars()方法。

関連する問題