int I = 3;
string b = integer . tostring(I);
Simpler:
String b = ""+i;
It will automatically convert I into I for processing.