怎么把textbox中的数字转换成byte
我在Form1上放一个textBox1, 和 button1,想把textBox1中输入的字符串型的数转换成字节private void button1_Click(object sender, EventArgs e)
{
byte[] myByte = System.Text.Encoding.Default.GetBytes(textBox1.Text);
}
打断点可以看到myByte中字节不是textBox1中输入的数字,我也没找到规律。不知怎么回事。