C# Program to Convert Integer to String


To convert an integer to string in C#, use the ToString() method.

Set the integer for which you want the string −

int num = 299;

Use the ToString() method to convert Integer to String −

String s;
int num = 299;
s = num.ToString();

Example

You can try to run the following code to convert an integer to string in C# −

Live Demo

using System;
class MyApplication {
   static void Main(string[] args) {
      String s;
      int num = 299;
      s = num.ToString();
      Console.WriteLine("String = "+s);
      Console.ReadLine();
   }
}

Output

String = 299

karthikeya Boyini
karthikeya Boyini

I love programming (: That's all I know

Updated on: 02-Sep-2023

39K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements