How to format int numbers into a string in C#

1 Answer

0 votes
using System;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            int n1 = 1000;
            int n2 = 1000000;
            int n3 = 10000000;

            string sf = string.Format("{0} {0,3} {1,9:N0}", n1, n2, n3);

            Console.WriteLine(sf);
        }
    }
}


/*
run:
     
1000 1000 1,000,000
 
*/

 



answered Dec 23, 2016 by avibootz

Related questions

2 answers 210 views
210 views asked Dec 23, 2016 by avibootz
1 answer 163 views
1 answer 121 views
121 views asked Oct 30, 2022 by avibootz
1 answer 162 views
1 answer 154 views
1 answer 158 views
158 views asked Dec 23, 2016 by avibootz
...