Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
4answers
19k views

What is the difference between IEnumerator and IEnumerable? [closed]

What are the differences between IEnumerator and IEnumerable?
18
votes
6answers
2k views

Why IEnumerator of T inherts from IDisposable, but non-generic IEnumerator does NOT?

I noticed that generic IEnumerator(of T) inherits from IDisposable, but the non-generic interface IEnumerator does NOT. Why it is designed in this way? Usually, we use foreach statement to go through ...
17
votes
3answers
2k views

Is Yield Return == IEnumerable & IEnumerator?

I just want to verify, is yield return a shortcut for implementing IEnumerable and IEnumerator? Thanks, John
15
votes
4answers
397 views

Why does capturing a mutable struct variable inside a closure within a using statement change its local behavior?

Update: Well, now I've gone and done it: I filed a bug report with Microsoft about this, as I seriously doubt that it is correct behavior. That said, I'm still not 100% sure what to believe regarding ...
12
votes
6answers
2k views

Return an empty IEnumerator

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 interface in several ...
10
votes
1answer
1k 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 shown, but it seems that ...
8
votes
6answers
803 views

Why implement IEnumerable(T) if I can just define ONE GetEnumerator?

Update: I appreciate all of the comments, which have essentially comprised unanimous opposition. While every objection raised was valid, I feel that the ultimate nail in the coffin was Ani's astute ...
7
votes
5answers
107 views

What do you call IEnumerable<Foo>?

I sometimes find myself thinking what word to use when referring an IEnumerable<Foo>. I don't think I see a consistent naming when reading. IEnumerable<Foo>: It's a type name. It isn't ...
6
votes
2answers
184 views

How Can I Use IEnumerator.Reset()?

How exactly is the right way to call IEnumerator.Reset? The documentation says: The Reset method is provided for COM interoperability. It does not necessarily need to be implemented; instead, the ...
6
votes
6answers
334 views

Question regarding IEnumerable and IEnumerator

I use the following code to enable myClass to use foreach. But I am rather new to programming and have some difficulty in understanding the following code. I described my problems in the comments. I ...
6
votes
1answer
271 views

Why do arrays in .net only implement IEnumerable and not IEnumerable<T>?

I was implementing my own ArrayList class and was left surprised when I realised that public System.Collections.Generic.IEnumerator<T> GetEnumerator() { return _array.GetEnumerator(); } ...
6
votes
2answers
1k 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 IEnumerable<T> ...
6
votes
3answers
3k 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 would be the best way to ...
5
votes
3answers
262 views

c# - why do I need IEnumerator.Current in a class implementing IEnumerator<T>

I have a class that implements IEnumerator<string>. See below: public class MyClass : IEnumerator<string> { public bool MoveNext() { //.... } //Implement other ...
5
votes
5answers
5k views

C#: Can I have a method return IEnumerator<T> and use it in a foreach loop?

I need to set the height of every textbox on my form, some of which are nested within other controls. I thought I could do something like this: private static IEnumerator<TextBox> ...
4
votes
2answers
95 views

How to realize right IEnumerator interface for multiple foreach?

I have a code like: class T : IEnumerable, IEnumerator { private int position = -1; public T() { } public IEnumerator GetEnumerator() { return ...
4
votes
7answers
305 views

Why was GetEnumerator() stored in a separate interface from IEnumerator?

I was wondering why the GetEnumerator() method was factored out of IEnumerator and placed in IEnumerable. It seems to me that it would make more sense to keep all of the enumerator methods in ...
4
votes
1answer
407 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 many simultaneous ...
3
votes
2answers
146 views

How to return IEnumerable<T> collection if there is one yield

What is the smartest way to use return statement in iterator block instead of foreach if I want to return input collection? public IEnumerable<T> Filter(IEnumerable<T> collection) { if ...
3
votes
1answer
87 views

ReSharper: Possible NullReferenceException with Enumerator?

ReSharper notifies me about a possible System.NullReferenceException for the following code: IEnumerator<IEdgeData> edgeEnumerator = edgeData.GetEnumerator(); while ...
3
votes
1answer
78 views

Reusing an IEnumerable<T> results in false result, e.g. on .Any()

I'm a little lost in deferred execution land: I declare an instance of an IEnumerable implementing class var wordEnumerable = new WordEnumerable(_text); Then I iterate over it (the first word is ...
3
votes
4answers
294 views

Pattern for using IEnumerator<T> in interfaces

I have a C# class which needs to process a sequence of items (IEnumerable<T>) across a bunch of methods, so I cannot simply foreach inside a method. I call .GetEnumerator() and pass this ...
3
votes
4answers
443 views

Problems with implementing generic IEnumerator and IComparable

I'm working on an AVL Tree. The tree itself seems to be working but I need a iterator to walk through the values of the tree. Therefore I tried to implement the IEnumerator interace. Unfortunately I ...
3
votes
3answers
232 views

IEnumerable<T> representing the “rest” of an IEnumerable<T> sequence

If I am walking through an IEnumerable<T>, is there any way to get a new IEnumerable<T> representing the remaining items after the current one. For example, I would like to write an ...
3
votes
5answers
448 views

Is it safe to delete from SortedList during iteration

My question is is it safe for enumerator to remove item from SortedList? SortedList<decimal, string> myDictionary; // omitted code IEnumerator<decimal, string> enum = ...
3
votes
4answers
5k views

How to access index in IEnumerator object in C#?

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?
2
votes
2answers
71 views

Using ItemsSource to populate WPF ListBox - Good Idea?

I'm a (relatively) experienced Cocoa/Objective-C coder, and am teaching myself C# and the WPF framework. In Cocoa, when populating an NSTableView, it's relatively simply to assign a delegate and ...
2
votes
1answer
83 views

C# Class is IEnumerable AND an IEnumerator at the same time. What are the issues with this?

I have a class called GenericPermutations that is both enumerable and an enumerator. Its job is to take an ordered list of objects and iterate through each permutation of them in order. Example, an ...
2
votes
5answers
90 views

Simple IEnumerator use (with example)

I am having trouble remembering how (but not why) to use IEnumerators in C#. I am used to Java with its wonderful documentation that explains everything to beginners quite nicely. So please, bear ...
2
votes
2answers
124 views

Simple way to implement a Collection?

I am developing a collection class, which should implement IEnumerator and IEnumerable. In my first approach, I implemented them directly. Now I have discovered the yield keyword, and I have been ...
2
votes
2answers
125 views

If an exception is thrown from IEnumerator<T>.MoveNext() or .Current, must it be still be disposed?

Intuitively I think yes, but I'm not sure if there's some convention I don't know about.
2
votes
2answers
381 views

Dynamically generated class that implements IEnumerator<T> GetEnumerator() and IEnumerator IEnumerable.GetEnumerator()

I have a problem with Reflection.Emit. I want to have dynamically created class, that has simple implementation of ICollection. All methods I've defined fine, instead of next two: public IEnumerator ...
2
votes
2answers
352 views

Why in this example (got from msdn), in GetEnumerator method , new PeopleEnum returns IEnumerator?

Why in this example from MSDN, in GetEnumerator method, PeopleEnum returns IEnumerator? public class Person { public Person(string fName, string lName) { this.firstName = fName; ...
2
votes
3answers
185 views

IEnumerable and IEnumerator in the same class, bad idea?

Is this a bad idea? Private Class GH_DataStructureEnumerator(Of Q As Types.IGH_Goo) Implements IEnumerable(Of Q) Implements IEnumerator(Of Q) .... .... 'Current, MoveNext, Reset etc.' ...
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, ...
2
votes
2answers
212 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 sense to have the ...
2
votes
1answer
1k views

Convert CollectionBase to List or data type usable with Linq

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 this link: ...
2
votes
3answers
609 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 like to clean up after ...
2
votes
5answers
2k 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?
2
votes
6answers
1k views

Implementing a bidirectional enumerator in C#

Is there a way to use yield blocks to implement an IEnumerator<T> which can go backward (MoveLast()) as well as forward?
1
vote
2answers
73 views

How do I implement a basic Enumerator class?

I am trying to understand how Enumerator class works. Specifically, I do not know how the yielder object is created and passed to the code block that the constructor takes. Here is my first try: ...
1
vote
1answer
96 views

Iterate through the enumeration and check the state of the MediaPlayer before advancing to the next song

I need to play songs in my IEnumerable collection, but there is so many problem with this method. If I use timer to check the MediaState, it may works, however when I navigate from this page, the ...
1
vote
2answers
73 views

How to create sub-enumerator with limited scope?

Let's say I have collection with 100 elements. Regular enumerator would iterate over those 100 elements. I would like to create enumerator (which is based on the regular enumerator, i.e. it is not ...
1
vote
2answers
472 views

How do I pick the most recently created folder using Foreach loop container in SSIS package?

I've got an interesting challenge with SSIS. Using a for-each file enumerator, I need to pick the subfolder which has been most recently created, and then iterate through each of the files. Perhaps ...
1
vote
2answers
134 views

Cleaning up with IDisposable issues

I am trying to call these functions to get rid of stuff I don't need, but my code seems to be defeating me in what I am begining to perceive to be a vain struggle. I have tried multiple ways to solve ...
1
vote
3answers
485 views

A question about IEnumerator.GetEnumerator in C#

I have a question about the IEnumerator.GetEnumerator() method. public class NodeFull { public enum Base : byte {A = 0, C, G, U }; private int taxID; private List<int> children; ...
1
vote
2answers
657 views

Multiple enumerators for an IEnumerable

I have a custom made collection that has many modes of objects generations inside of it. It can generate everything, one object at a time or N objects at a time. I would like to have the option to ...
1
vote
1answer
132 views

IEnumerator: Is it normal to have an empty Dispose method?

I'm writing an IEnumerator<T> class to iterate over a COM collection I'm wrappering. I've noticed that IEnumerator<T> extends IDisposable, so I'm required to implement the Dispose method. ...
1
vote
4answers
342 views

How to Implement an Interface that Requires Duplicate Member Names?

I often have to implement some interfaces such as IEnumerable<T> in my code. Each time, when implementing automatically, I encounter the following: public IEnumerator<T> GetEnumerator() ...
1
vote
4answers
358 views

Can we use GetEnumerator() without using IEnumerable interface?

I have a class called Primes and this class implements GetEnumerator() without implementing IEnumerable interface. public class Primes { private long min; private long max; public ...

1 2