Browse by Tags

All Tags » Parallelisation » C# » Stack Overflow » Wacky Ideas (RSS)
Sorry, but there are no more tags available to filter with.

Iterating atomically

The IEnumerable<T> and IEnumerator<T> interfaces in .NET are interesting. They crop up an awful lot, but hardly anyone ever calls them directly - you almost always use a foreach loop to iterate over the collection. That hides all the calls...