0
How to convert int to string?
i really so bad to this. i cann't convert int to string in c#. please help me for my homework 😅
4 Respuestas
0
Like the second slide in this?
https://www.sololearn.com/learn/CSharp/2585/?ref=app
0
Hmm, maybe more concise:
https://stackoverflow.com/questions/3081916/convert-int-to-string
0
int a = 10;
string b = a.ToString();
is this what you meant?
0
Depends on the language you use.