how can I take an integer variable equal to 1123
and make it a string equal to "1123"

eg: int number=1123;
CString string;
string = number;

such that string ="1123"