Hi,
Im trying to build simple encryption,
I use
char d="a"
int intASC = System.Convert. ToInt32(d);
to convert it, and play with it,
now I want to change it (d) back for the original ascii value ("a"),
how do I do that ?
Im trying to build simple encryption,
I use
char d="a"
int intASC = System.Convert. ToInt32(d);
to convert it, and play with it,
now I want to change it (d) back for the original ascii value ("a"),
how do I do that ?
Comment