Click to See Complete Forum and Search --> : Int to alpha conversion


caffineplease
June 11th, 2003, 11:02 AM
Does anyone have any idea how to convert an integer into its character equivalent?

Regards

John

BinaryAnge
June 11th, 2003, 11:52 AM
Convert.ToChar(int value);

caffineplease
June 11th, 2003, 11:56 AM
Thanks 4 your reply... but as a C++ developer I should've known that the following works as well! DOH!!

char aChar = (char)nInteger

Regards

John