消しゴムじゃないMONOを使ってみるスレ 2個目
at TECH
277:デフォルトの名無しさん
07/01/10 16:52:08
そういうのは気がついたらbugzillaに投げてくれ。
URLリンク(bugzilla.ximian.com)
using System;
using System.Text;
public class GTest
{
public static void Main ()
{
string s = "高知県南国市大 宮アあおい 村薫 草g剛";
Encoding e = Encoding.GetEncoding ("shift_jis");
byte [] bytes = e.GetBytes (s);
foreach (byte b in bytes)
Console.Write ("{0:X02} ", b);
Console.WriteLine ();
foreach (char c in e.GetString (bytes))
Console.Write ("{0:X04} ", (int) c);
}
}
気が向いたら直します。
次ページ続きを表示1を表示最新レス表示スレッドの検索類似スレ一覧話題のニュースおまかせリスト▼オプションを表示暇つぶし2ch
4943日前に更新/168 KB
担当:undef