Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi, anyone knows how to translate ASCII value ("int" = say, 53) into a "char"? Thanks norm
char MyChar = (char) someIntValue; Cheers, Julian Program Manager, C# This posting is provided "AS IS" with no warranties, and confers no rights.
... how about....
char A = (char)65; int i = 66; char B = (char)i;
Best of luck - Bernd