How to use ForEach to loop through a list in C#

1 Answer

0 votes
using System;
using System.Collections.Generic;
					
public class Program
{
	public static void Main()
	{
		List<int> lst = new List<int>(new int[] { 12, 87, 34, 99, 100 });

        lst.ForEach(n => Console.WriteLine(n));
	}
}



/*
run:

12
87
34
99
100

*/

 



answered May 6, 2020 by avibootz

Related questions

1 answer 155 views
1 answer 116 views
116 views asked Mar 6, 2023 by avibootz
2 answers 158 views
158 views asked Nov 25, 2020 by avibootz
1 answer 145 views
1 answer 85 views
85 views asked Aug 8, 2024 by avibootz
3 answers 170 views
2 answers 190 views
...