Convert int to string in C#
To convert int to string in C# we can use built in methodSystem.Convert.ToInt32()
which takes string parameter and return the integer value of that string.Example
using System;
public class Program
{
public static void Main()
{
string text = "100";
Console.WriteLine(System.Convert.ToInt32(text));
}
}
Output
100