howdy i have a simple question here, that is how to convert an integer to a string ? i tried this but failed:
Code:
string s;
char c;
x = (char) 5;
s =  "you got a " + x + " here~";
any help ???