Tagged Questions

7
votes
9answers
483 views

Get next N elements from enumerable

Context: C# 3.0, .Net 3.5 Suppose I have a method that generates random numbers (forever): private static IEnumerable<int> RandomNumberGenerator() { while (true) yield return ...
5
votes
2answers
63 views

Passing a list's enumerator to a function

It looks like passing a list's enumerator to a function "byval" is quite different than passing it "byref". Essentially, regular "byval" passing will NOT change the caller's "enumerator.Current ...
4
votes
5answers
943 views

Next key in C# Dictionary

How to get an Enumerator to an item in a -Sorted- dictionary using key? Note:GetEnumerator() gets an Enumerator to first element.. But I need to get an Enumerator to the element with a given key in ...
4
votes
10answers
382 views

.net enumeration first and last

is there a way in .NET (or some sort of standard extension methods) to ask questions of an enumeration? For example is the current item the first or last item in the enumeration: string s = ""; ...
1
vote
1answer
61 views

What's Enumerator in an object?

This line of code confuses me: List<string> keys = new List<string>(); IDictionaryEnumerator ca = cache.GetEnumerator(); while (ca.MoveNext()) { keys.Add(ca.Key.ToString()); } What is ...
0
votes
1answer
442 views

DataSet: Enumerator and FindById do not return equal DataRow

Today's problem in my code is kind of strange, and I could not reproduce it yet. I'm working with a typed dataset (created with the designer) and I'm looping over all rows in a datatable. Sometimes ...