ホーム
サンプルコード
雑記
デザインパターン
ソフトウェア
1 2 3 4 5
byte[] buf = new byte[] { 0x61, 0x62, 0x63, 0x64, 0x65 }; // byte[]型からstring型に格納(932はShiftJisを表します) string str = Encoding.GetEncoding(932).GetString(buf); Console.WriteLine(str);