I have an ASCII value stored as an int and I want ASCII convert to character.
private void button2_Click(object sender, EventArgs e)
{
String text3 = textBox1.Text;
String text4 = "";
byte[] array = Encoding.ASCII.GetBytes(text3);
foreach (char c in array)
{
int ascii = (int)c;
ascii = ((((ascii / 37 + 657) / 12) - 582) / 11);
text4 += ascii + "-";
}
textBox3.Text = text4;
}