c# conversion int to string
Details- Details
- Category: c#
- Hits: 3783
Conversion type int to string in c# It is possible with the help ToString()
Example:
int i =5;
string s1 = i.ToString();
string s2 = s1+i.ToString();
//// result s1 = 5; s2 = 55