convert to int to string c# code example
Example 1: c sharp int to string
// Turn a integer into a string using 'ToString()'
int n = 3;
string number = n.ToString()
Example 2: c# int to string
static void Main()
{
int Value = 69 // integer
string ValueString = Value.ToString(); // integer to string
Console.WriteLine(ValueString); // string
}