Conversions from ASCII to hex to decimal, all 3
I need to create a C# program that does the following:
Converts a character such as 'S' to 0x53 or 83 decimal and I need to print it on the screen as
char hex decimal
S 53 83
can anyone help.
thanks,
barry