Tagged Questions

92
votes
17answers
57k views

C# String enums

I have the following enumeration: public enum AuthenticationMethod { FORMS = 1, WINDOWSAUTHENTICATION = 2, SINGLESIGNON = 3 } The problem however is that I need the word "FORMS" when I ...
7
votes
9answers
486 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 ...
7
votes
3answers
2k views

Best way to convert a non-generic collection to generic collection

What is the best way to convert a non-generic collection to a generic collection? Is there a way to LINQ it? I have the following code. public class NonGenericCollection:CollectionBase { public ...
6
votes
7answers
2k 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 once to build a map. ...
5
votes
3answers
225 views

c# - how to create an array from an enumerator

In C#, what's the most elegant way to create an array of objects, from an enumerator of objects? e.g. in this case I have an enumerator that can return byte's, so I want to convert this to byte[]. ...
4
votes
3answers
221 views

C# How to make a recursive version of GetEnumerator()

Can somebody give me advice on how to create a recursive version of GetEnumerator()? The well-known Towers of Hanoi problem may serve as an example that is comparable to the actual problem I have. A ...
4
votes
5answers
944 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 ...
3
votes
2answers
75 views

Possible multiple enumeration of IEnumerable warning by using .GetType()

I get the ReSharper warning "Possible multiple enumeration of IEnumerable" with following code: public void Mymethod(IEnumerable<int> entities) { var enumerator = entities.GetEnumerator(); ...
3
votes
4answers
84 views

Interface implementations and return types

The List<T> class implements the IEnumerable<T> interface. It has a method GetEnumerator that returns a List<T>.Enumerator. I have a class as below, which gives a compile error ...
3
votes
1answer
74 views

Disposing of arguments for an iterator block

Allright, here it goes a good piece of bad code: public class Log : CachingProxyList<Event> { public static Log FromFile(String fullPath) { using (FileStream fs = new ...
3
votes
11answers
259 views

Enumerator problem, Any way to avoid two loops?

I have a third party api, which has a class that returns an enumerator for different items in the class. I need to remove an item in that enumerator, so I cannot use "for each". Only option I can ...
3
votes
4answers
459 views

Synchronized IEnumerator<T>

I'm putting together a custom SynchronizedCollection<T> class so that I can have a synchronized Observable collection for my WPF application. The synchronization is provided via a ...
2
votes
4answers
490 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 sequence]; } } ...
1
vote
2answers
121 views

what is the pattern for modifying a collection in C#

What is the pattern (best practice) for such problem -- modifying elements (values) in collection? Conditions: size of the collection is not changed (no element is deleted or added) modification is ...
1
vote
3answers
182 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] - HT1[100]; ...
0
votes
3answers
72 views

Passing an unknown enum value into a function

This is an elaboration on this question: c# Enum Function Parameters I created a little sample application to introduce my question: UPDATE: This is a known difficulty on the C# programming ...
0
votes
3answers
103 views

C# - How to create updatable enumerator?

I'm a bit new to C# (coming from PHP) and I was a bit shocked that, by looping through a list I can't pass a reference to that varialbe, i.e. the following code is not valid: foreach (ref string var ...
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 ...
-1
votes
1answer
252 views

C#: Access a reverse enumerator for a linkedlist

I've created a "reverse itearator" for a LinkedList, now I would like to use it with an extension method: public static class LinkedListExtensionMethods { public static IEnumerator ...
-2
votes
1answer
80 views

How to translate this piece of Java code to C#?

Here is the Java code which I want to translate to C#: public Enumeration getLogHeaders() { return logHeaders != null ? logHeaders.elements() : null; } logHeaders is a List<String>. This the ...