将字母转换成ASCII码
private void button1_Click(object sender, EventArgs e){
if (txt_char.Text!= string.Empty)
{
if (Encoding.GetEncoding("unicode").GetBytes(new char[]{ txt_char.Text[0] })[1] == 0)
{
txt_ASCII.Text = Encoding.GetEncoding("unicode").GetBytes(txt_char.Text).ToString();
}
else
{
txt_ASCII.Text = string.Empty;
MessageBox.Show("请输入字母!", "提示!");
}
}
}
以上程序,我想弄一个“字母转换为ASCII码”的转换。但是就是转换不了,请各位高手帮忙看一下!!!多谢了