I am trying to convert text into ascii I successfully make that by the following code
String input = "Hello World!";
char[] values = input.ToCharArray();
byte[] asciitext = new byte[300];
asciitext = Encoding.ASCII.GetBytes(values);
foreach (byte element in asciitext)
{
TextBox2.Text += element;
}
How I can return the ascii to a text???
any help?

New Topic/Question
Reply



MultiQuote





|