Posts by Brayan Fernandes • 11 points
1 post
-
1
votes2
answers1272
viewsQ: Convert int to Hex
what I want to do is possible? convert the value variable to Hex. private void button1_Click(object sender, EventArgs e) { int value = 255; byte[] buffer = new byte[5]; buffer[0] = 0xff; buffer[1] =…