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,907 questions

51,839 answers

573 users

How to use foreach loop in C#

2 Answers

0 votes
using System;
using System.Collections.Generic;

class Program
{
    static void Main() {
        var lst = new List<int> { 5, 8, 3, 1, 0, 7 };

        foreach (int element in lst) {
            Console.WriteLine(element);
        }
    }
}



/*
run:

5
8
3
1
0
7

*/

 



answered Nov 25, 2020 by avibootz
0 votes
using System;

class Program
{
    static void Main() {
        var arr = new int[] { 5, 7, 2, 1, 9 };
        
        foreach (int n in arr) {
            Console.WriteLine(n);
        }
    }
}



/*
run:

5
7
2
1
9

*/

 



answered Nov 25, 2020 by avibootz

Related questions

1 answer 132 views
132 views asked Mar 6, 2023 by avibootz
1 answer 172 views
1 answer 164 views
1 answer 96 views
96 views asked Aug 8, 2024 by avibootz
3 answers 191 views
1 answer 181 views
2 answers 269 views
...