hello i'm doing a hex to ascii converter. but now the problem is whenever it's converted, the hex code would be in front of the ASCII code.
private void convertButton_C lick(object sender, EventArgs e)
{
asciiTextBox.Te xt = HexString2Ascii (hexTextBox.Tex t);
}
Input: 4153434949
Output: 4153434949ASCII
i know the problem lies with the hexTextBox.Text . but how do i remove the 4153434949 in front of the converted one?
private void convertButton_C lick(object sender, EventArgs e)
{
asciiTextBox.Te xt = HexString2Ascii (hexTextBox.Tex t);
}
Input: 4153434949
Output: 4153434949ASCII

i know the problem lies with the hexTextBox.Text . but how do i remove the 4153434949 in front of the converted one?
Comment