Click to See Complete Forum and Search --> : Equivalent for CHR$ in VB


iman95
July 12th, 2005, 05:49 AM
Dear all,
In VB we can write ASCII character using CHR$ Functions.
CHR$(65) is "A".
How do this in managed c++?

Thanks,
iman

NoHero
July 12th, 2005, 06:17 AM
Well...

char A = (char)65;
Console::WriteLine("65 is: {0}", A);

:)