I need to take an input from the user, turn all the chars to their decimal value and display the as one string without spaces, then turn it into a string and display it, and afterwards take the number string and turn back to the original string.
A."Hello World" - string
B."72101108108111 87111114108100" - string
C."7210110810811187111114108100" (Processed and displayed) - int
D."72101108108111 87111114108100" - string
E."Hello World" - string
I got to this stage :
string input = Console.ReadLine();
byte[] array = Encoding.ASCII.GetBytes(input);
It's not much but its my first try at creating a program.