Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
4
votes
4answers
2k views

How do Enumerators work in Ruby 1.9.1?

This question is not about how to use Enumerators in Ruby 1.9.1 but rather I am curious how they work. Here is some code: class Bunk def initialize @h = [*1..100] end def each if ...
3
votes
1answer
54 views

How does ASP Classic FOR EACH loop work

I would like to now how the ASP Classic/VB6 FOR EACH loop works. I know with .NET IEnumberable/IEnumerator are involved, but how does VB6/ASP Classic do it? Thanks!
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