3
votes
1answer
92 views
Looking for a faster implementation for IEnumerable/IEnumerator
I'm trying to optimize a concurrent collection that tries to minimize lock contention for reads. First pass was using a linked list, which allowed me to only lock on writes while m …
2
votes
4answers
102 views
How to access index in IEnumerator object in C#?
Hi there
I have an iEnumerator object. I would like to access based on index for instance:
for(i=0; i<=Model.Products; i++)
{
???
}
Is this possible?
0
votes
5answers
87 views
Return an empty IEnumerator
Hello!
I have an interface that, among other things, implements a "public IEnumerator GetEnumerator()" method, so I can use the interface in a foreach statement.
I implement this …
1
vote
5answers
140 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, http://s …
2
votes
2answers
80 views
Is it possible to get an IEnumerator<T> from a T[]?
Let's say I want to create a collection class that is thread-safe by default.
Internally, the class has a protected List<T> property called Values.
For starters, it makes s …
0
votes
1answer
80 views
Convert CollectionBase to List or data type usable with Linq
Hi
I am using Aspose cells to manipulate Excel spreadsheets.
One of the types in the API is a collection of Pictures in the spreadsheet, which derives from CollectionBase:
see th …
2
votes
3answers
141 views
C#: Where to implement a custom IEnumerator<T>
Say I have a class that implements IEnumerable<T>. It currently uses the yield keyword in the GetEnumerator() method. But now I need to do a bit more, for example I would lik …
1
vote
5answers
494 views
IEnumerable<T> provides two GetEnumerator methods - what is the difference between them?
When I emplement IEnumerable<T> interface I see two GetEnumerator methods: one returning IEnumerator and other IEnumerator<T>. When would I use one or another?
1
vote
5answers
165 views
Enumeration of .Net IList
I'd like to know if I can assume that the IEnumerator I get from an IList (by calling the GetEnumerator method from the IEnumerable interface) will give me the items in the order o …
0
votes
3answers
142 views
Calling IEnumerator from an Interface class
I am new to enumerating collections so forgive if this question sounds silly.
I have an class
public class PersonStuff : IPersonStuff, IEnumerable<User>
{
Perso …
0
votes
1answer
64 views
How do I select a subset of items from an anonymous type IEnumerable?
I have the following code.
MyDataContext db = MyDataContext.Create();
bc =
db.BenefitCodes.Select(
b =>
new
…
0
votes
4answers
245 views
.NET: is there a “HasNext” method for an IEnumerator ?
With Java Iterators, I have used the hasNext method to determine whether an iteration has more elements (without consuming an element) -- thus, hasNext is like a "Peek" method.
My …
2
votes
1answer
159 views
C# : obtain generic enumerator from an array
In C#, how does one obtain a generic enumerator from a given array?
In the code below, MyArray is an array of MyType objects. I'd like to obtain MyIEnumerator in the fashion show …
5
votes
1answer
458 views
C#: IEnumerator<T> in a using statement
I was curious to see how the SingleOrFallback method was implemented in MoreLinq and discovered something I hadn't seen before:
public static T SingleOrFallback<T>(this …
4
votes
3answers
561 views
What is the best way to convert an IEnumerator to a generic IEnumerator?
I am writing a custom ConfigurationElementCollection for a custom ConfigurationHandler in C#.NET 3.5 and I am wanting to expose the IEnumerator as a generic IEnumerator.
What woul …
