I generally work with collections in C# so I use ForEach loops a lot.
var numbers = new List<int>() { 1, 2, 3, 4 }; foreach (var number in numbers) { Console.WriteLine(number + 1); }
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
Stay on the cutting edge, and shape tomorrow
I generally work with collections in C# so I use ForEach loops a lot.