I want to convert decimals into Hex:
string hex = IntToString(dezimal,
new char[] { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'A', 'B', 'C', 'D', 'E', 'F'});
textBoxHexa.Text = hex;
But I get an error:
Input string was not in a correct format
Is this even the best way to do it? If not, what better ways are there?