+ 1
Can we convert Int to string?
2 Antworten
+ 4
There are 2 simple ways:
1.
int num = 10;
string numStr = num.ToString();
2.
int num = 10;
string numStr = "" + num;
--
Hope that helps :) Goodluck!
+ 3
int a=7;
string b=Convert.ToString(a);
that should do it,i think.