Tagged Questions

8
votes
1answer
1k views

Concurrency or Performance Benefits of yield return over returning a list

I was wondering if there is any concurrency (now or future), or performance benefit to using yield return over returning a list. See the following examples Processing Method void Page_Load() { ...
5
votes
3answers
894 views

F# yield! operator - Implementation and possible C# equivalents

I'm currently learning F# and I really love the yield! (yield-bang) operator. Not only for its name but also for what it does of course. The yield! operator basically allows you to yield all elements ...
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
905 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
177 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 ...
1
vote
2answers
106 views

Does changing a item field in a Collection while iterating invalidates the collection?

If do: foreach(var a in col) { a.X = 1; } Will my iterator over the collection become invalid? Thanks