Tagged Questions

17
votes
10answers
4k views

C# String enums.

Hi, I have the following enumerator: public enum AuthenticationMethod { FORMS = 1, WINDOWSAUTHENTICATION = 2, SINGLESIGNON = 3 } The problem however is that I need the word …
2
votes
7answers
163 views

escaping the .each { } iteration early in Ruby

code: c = 0 items.each { |i| puts i.to_s # if c > 9 escape the each iteration early - and do not repeat c++ } I want to grab the first 10 items then …
4
votes
4answers
1k views

Enumerate a formcollection in asp.net-mvc

Hi, How can I enumerate through all the key/values of a FormCollection (system.web.mvc)
2
votes
10answers
189 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: …
0
votes
1answer
101 views

DataSet: Enumerator and FindById do not return equal DataRow

Hi folks 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 row …
1
vote
3answers
102 views

copy n k/v pairs from Hashtable

I have a hashtable with n number of records. I need to copy out the records between x and y and iterate through them. How would I do this? Example: HT1.Count = 500; HT2 = HT1[0 …
5
votes
7answers
599 views

How to iterate over two arrays at once?

I have two arrays built while parsing a text file. The first contains the column names, the second contains the values from the current row. I need to iterate over both lists at on …
1
vote
1answer
74 views

for_each on a COM IEnumXxx interface?

I've got a COM object that returns an IEnumUnknown. Is there anything out there that'll turn it into an STL-style iterator? So that I can do something like this: IEnumUnkPtr pEnum …
0
votes
4answers
265 views

How do you design an enumerator that returns (theoretically) an infinite amount of items?

I'm writing code that looks similar to this: public IEnumerable<T> Unfold<T>(this T seed) { while (true) { yield return [next (T)object in custom seque …