convert integer into string c# code example
Example 1: c# convert int to string
string myString = myInt.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
}