Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,885 questions

51,811 answers

573 users

How to format int array into a string in C#

2 Answers

0 votes
using System;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] arr = {13, 5, 761, 19826};

            String s = "";
            for (int i = 0; i < arr.Length; i++)
                s += String.Format("{0}\n", arr[i]);

            Console.WriteLine(s);
        }
    }
}


/*
run:
     
13
5
761
19826
 
*/

 



answered Dec 23, 2016 by avibootz
0 votes
using System;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] arr = {60876234, 98747654, 39821842, 78969854};

            String s = "";
            for (int i = 0; i < arr.Length; i++)
                s += String.Format("{0,9:N0}\n", arr[i]);

            Console.WriteLine(s);
        }
    }
}


/*
run:
     
60,876,234
98,747,654
39,821,842
78,969,854
 
*/

 



answered Dec 23, 2016 by avibootz

Related questions

1 answer 133 views
1 answer 149 views
1 answer 138 views
1 answer 140 views
140 views asked Dec 23, 2016 by avibootz
1 answer 119 views
1 answer 106 views
106 views asked Oct 30, 2022 by avibootz
1 answer 121 views
...