Check out example codes for "c# convert int to string". It will help you in understanding the concepts better.
Code Example 1
// Turn a integer into a string using 'ToString()'
int n = 3;
string number = n.ToString()
Code Example 2
string myString = myInt.ToString();
Learn ReactJs, React Native from akashmittal.com