Android how to convert int to String? -
this question has answer here:
- how convert int string? 19 answers
i have int , want convert string. should simple, right? compiler complains can't find symbol when do:
int tmpint = 10; string tmpstr10 = string.valueof(tmpint);
what wrong above? and, how convert int (or long) string?
use string.valueof(value);
Comments
Post a Comment