Tagged Questions

3
votes
4answers
92 views

foreach, IEnumerator, IEnumerable

Whether the foreach loop uses interfaces IEnumerator and IEnumerable only for iterating the objects of custom types (classes) or also for iterating the built-in types(behind the scene)?
3
votes
7answers
906 views

Why does enumerating through a collection throw an exception but looping through its items does not

I was testing out some synchronization constructs and I noticed something that confused me. When I was enumerating through a collection while writing to it at the same time, it threw an exception ...
2
votes
6answers
449 views

Why doesn't .NET have a bidirectional enumerator?

It's been asked a couple of times on SO how you can implement a bidirectional enumerator (http://stackoverflow.com/questions/191788/two-directional-list-enumerator-in-net, ...
1
vote
2answers
178 views

What are C# Iterators and Generators, and how could I utilize them

I am a VB.Net developer, kind of newbie in C#, While looking in C# documentation I came through Iterators and Generators, could not fully understand the use, I there anyone who can explain (in vb ...