I use array of byte and I need to convert this 4 byte to integer and display result in textbox ,the result must 320 but it display 64
byte[] bb = new byte[4] { 64, 1, 0, 0 };
textBox1.Text = Convert.ToInt32(bb[0]).ToString(); // display result 64 it must 320
what is wrong??