how do I convert text in textBox1 from Hex to Binary and display it in textBox2
I don't even know where to start
how do I convert text in textBox1 from Hex to Binary and display it in textBox2
I don't even know where to start
To convert an hex string to a binary string you should do :
string binaryValue = Convert.ToString(Convert.ToInt32(hexValue, 16), 2);
Then for the TextBox there is ton of tutorial to make it.