Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
選択したバイナリ値を対応する UTF-16 文字値に変換するにはどうすればよいですか? これをファイルではなく変数に入れる必要があります。
さて、あなたはいくつかのエンコーディングがすでに存在するという事実を利用することができます:
using System.Text; var str = Encoding.ASCII.GetString(new byte[] { 65, 66, 67 }); // "ABC" var chr = Encoding.ASCII.GetChars(new byte[] { 65 })[0]; // 'A'