IEnumerator interface allows you to iterate through any custom collection.
2
votes
3answers
63 views
Ideal C# IEnumerable generic number sequence with start and interval
I was looking for, but could not find, an idiomatic example for a generic class implementing IEnumerable, which does this: constructor takes start and interval, and GetEnumerator returns IEnumerator, ...
2
votes
2answers
55 views
IEnumerator<T> / IEnumerable<T> with position stored only temporarily?
I'm developing a graph where I need to keep the memory usage per node as low as possible. Each node implements IEnumerator / IEnumerable.
IEnumerator / IEnumerable make use of "position" in the ...
0
votes
1answer
33 views
ListView not Updating on a PropertyChanged Event
I have the following code, but the problem is that PropertyChanged is always null when I try to fire it. Why is that, and how could I get around this?
Creating the ListView programmatically and ...
1
vote
2answers
65 views
Does IEnumerators require more resources than Arrays?
I have an implementation of the Sutherland–Hodgman algorithm, and so I need to return arrays frequently. I'm using Unity, so the answer needs to apply at least on the Mono runtime.
I'm wondering If ...
2
votes
2answers
56 views
Would prepending an empty string to HashTable.Add() possibly be the culprit of “value does not fall within the expected range”?
I can't for the life of me figure out why the legacy code is doing this:
HashSiteMapping.Add(""+sm.SiteNumber, sm.LocationNumber);
...when this seems more sensible:
...
0
votes
3answers
94 views
Java equivalent to IEnumerator from C#?
Are there interfaces in Java library, which also enumerates some series, but follows slightly another logic than Iterator and Enumeration? Namely they should return boolean on next(), saying whether ...
0
votes
2answers
108 views
Override the default behaviour of GetEnumerator
I have a requirement where I need to know the calling method to the GetEnumerator().
The best way I could think would be possibly overriding the default behaviour to GetEnumerator to one that I ...
4
votes
1answer
116 views
Having trouble refactoring an IEnumerator method with multiple yields
The gist of my code is as follows:
// Play the first beat
audio.PlayOneShot(beat);
// Show 1st heartbeat border flash
TweenAlpha.Begin(heartbeatPanel.gameObject, 0.1f, currentStress);
yield return ...
1
vote
3answers
81 views
Iterate and modify Dictionary
I am trying to implement solution for problem explined on http://users.metropolia.fi/~dangm/blog/?p=67.
I am new to c# language.I want to iterate through the dictionary using enumerator and for a ...
2
votes
1answer
125 views
ForEach loop not changing property of class
I've seen a couple questions about this, and done some research.
My understanding is that when you run a foreach on IEnumerable: if T is a Reference Type (e.g. Class) you should be able to modify ...
4
votes
2answers
132 views
When does IEnumerable.GetEnumerator get called instead of IEnumerable<T>.GetEnumerator?
I have a simple example class:
public class myWords : IEnumerable<string>
{
string[] f = "I love you".Split(new string[]{"lo"},StringSplitOptions.RemoveEmptyEntries);
public ...
1
vote
1answer
87 views
Trying to use Parallel.ForEach on a ConfigurationElementCollection. Can't get it to work
I have a custom configuration section with a collection that I created using the following code that I got from this question:
public class GenericConfigurationElementCollection<T> : ...
1
vote
0answers
68 views
javascript array enumerator
I'm thinking of rolling my own solution to see if I can extend an observable array with something like moveNext, Reset, Current, and all the other functionality that you can use with an IEnumerator in ...
2
votes
1answer
81 views
I want to create an IEnumerable inheriting Sparse Array with arbitrary indexing
I am trying to create:
Sparse Array with arbitrary indexing and
have have Sparse Array inherit IEnumerable.
So far I have the indexing... the IEnumerable part I don't know what to do.
class ...
4
votes
2answers
159 views
Implementing IEnumerable to my object [duplicate]
Possible Duplicate:
Implementing C# IEnumerable<T> for a LinkedList class
After searching the web for some hours now I still can't understand how IEnumerable/IEnumerator works and how ...
0
votes
1answer
26 views
Looping through an NSDictionary results in odd behaviour
I've currently got an NSDictionary that i'm using to store json information in, the JSON is originally serialized into an NSMutuable array and i then assign it to an NSDictionary.
In my annotation ...
11
votes
1answer
145 views
Why does IEumerator<T> affect the state of IEnumerable<T> even the enumerator never reached the end?
I am curious why the following throws an error message (text reader closed exception) on the "last" assignment:
IEnumerable<string> textRows = File.ReadLines(sourceTextFileName);
...
2
votes
4answers
484 views
Why do we need IEnumerator and IEnumerable?
Ok so I was just working through the IEnumerator and IEnumerable. Now the MSDN says that the main objective of these things is to iterate through a customer collection.
Fair enough I was however able ...
0
votes
0answers
10 views
Execute IEnumerator In 1 Frame
Excute below codes will result it to be finished after 200 frames. How to make it to finish in 1 frame?
StartCoroutine(JustTest());
IEnumerator JustTest(){
for(int i=0;i<200;i++){
...
0
votes
4answers
53 views
What is the point of IEnumerator?
This is an excellent video explaining what it is and the differences, but it seems it has a fundamental flaw, you can't skip around the list; it even lacks a Previous() method.
I was sending a list ...
0
votes
0answers
119 views
Two types of iterators
I apologize for all the code but I had a hard time describing what I was trying to do. I am creating a 2D grid for a tile map. The tiles (blocks) are broken up into say a 10x10 square of tiles called ...
2
votes
2answers
153 views
Multiple threads accesing IEnumerable using yield
I am using a third party library that iterates over some very large flat files which can take many minutes. The library provides an Enumerator so you can yield each result and process it while the ...
0
votes
2answers
3k views
foreach statement cannot operate on variables of type Dars does not contain a public definition for 'GetEnumerator'
I have a list Dars
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PantaRei.Components
{
public class Dars
{
public float OpBal { ...
3
votes
3answers
223 views
What is the for/while equivalent of foreach?
I have a foreach loop that needs converting to a for or while loop. My loop looks like this:
foreach (Item item in Items)
{
// some stuff
}
What is the equivalent for or while loop?
I think I ...
0
votes
1answer
375 views
Passing a value by ref to an IENumerator function?
To clarify I'm doing this in Unity3D, which may or may not be important?
I'm trying to figure out if I can pass a value by ref to an IEnumerator function that does not yield. If I try to do it with ...
10
votes
4answers
256 views
Why does Iterator define the remove() operation?
In C#, the IEnumerator interface defines a way to traverse a collection and look at the elements. I think this is tremendously useful because if you pass IEnumerable<T> to a method, it's not ...
0
votes
1answer
29 views
Why does RunThis() not do anything?
I am working on a project in Unity3d and I was writing some code and initially I had the IEnumerator as Start instead of RunThis and the code ran fine, now I went to move it in to a new method and it ...
3
votes
1answer
110 views
Is this abusing the IEnumerator construct?
I have a Sensor state machine for which I've written Cycle() methods:
/// <summary>
/// Cycle sets the machine to follow a path from one it's current state to the next. The
/// behavior ...
2
votes
4answers
312 views
C#: circular enumeration of IEnumerable
There is the command hierarchy in my current application.
public interface ICommand
{
void Execute();
}
So, some commands are stateful, some are not.
I need to enumerate IEnumerable in the ...
0
votes
2answers
727 views
IEnumerable C# Class How-to
Below is my class. I need to make it Enumerable. I have looked online and although I have found alot of documentation I am still lost. This I think is absolutely the first time I am going to ask this ...
7
votes
2answers
242 views
How does IEnumerable differ from IObservable under the hood?
I'm curious as to how IEnumerable differs from IObservable under the hood. I understand the pull and push patterns respectively but how does C#, in terms of memory etc, notify subscribers (for ...
1
vote
1answer
54 views
IEnumerable & IEnumerator Suffix
If you have a class that implements IEnumerable and IEnumerator but does not implement ICollection, IList or ISet what suffix do you use?
1
vote
3answers
209 views
Declare a function supporting both Void and IEnumerator
I was wondering if there is a way to declare a method (in an interface for example) that supports the use of IEnumerator and Void, without the need to implement both in the subclasses?
public void ...
3
votes
2answers
136 views
Enumerator as an argument
Okay, let's start with this very simple button click method
private void button1_Click(object sender, EventArgs e)
{
int counter = 1;
List<int> items = new int[] { 1, 2, ...
0
votes
3answers
158 views
How to get Next and Prevous values?
I've got this piece of code to get the next value using LINQ namespace.
public static class Extension
{
public static T Next<T>(this IEnumerable<T> source, Func<T, bool> ...
1
vote
1answer
2k views
Serialization on classes that implement IEnumerator
I have written a program which will serialize and de-serialize, it does this fine (I plan on implementing it on the subclasses once I get it properly working on one). However I have run into trouble ...
4
votes
8answers
1k views
Manually increment an enumerator inside foreach loop
I have a nested while loop inside a foreach loop where I would like to advance the enumerator indefinitately while a certain condition is met. To do this I try casting the enumerator to ...
2
votes
2answers
2k 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 ...
5
votes
2answers
293 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 ...
1
vote
2answers
152 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:
...
4
votes
2answers
178 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 ...
0
votes
2answers
181 views
Catching behavior in a foreach loop C#
Simple question, I believe --> It is my understanding that an imaginary IEnumerator object is being used when I use a foreach loop over an IEnumerable object. My question is as follows:
How can I ...
1
vote
3answers
154 views
Detecting modifications with an IEnumerable
I have a question that I am surprised hasn't already been asked in exactly this format.
If I have an IEnumerable that is generated based on iterating through a source of data, (and using a yield ...
3
votes
5answers
7k 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 ...
7
votes
5answers
180 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 ...
0
votes
1answer
199 views
Help getting generic AVL tree to compile (IEnumerator issue) in C#
I'm getting a few compile errors in an AVL tree I'm trying to implement.
something is throwing the whole enumerator off. It compiled fine until I tried to implement a helper class. I was thinking it ...
1
vote
2answers
98 views
Rhino Mocks: Stubbing an IEnumerator<T>
I'm developing a little .net 2.0 project. I get to the point where I need to test some class's method which takes an IEnumerator. As a few days ago I learnt to use Rhino Mocks I wrote the following ...
1
vote
1answer
203 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
96 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 ...
0
votes
1answer
722 views
Get number of columns and column names from LinQ result set
I am creating a Grid view user control and I would like to know how to get the number of columns and the column names from the LinQ result set. This will be used to create a dynamic grid view.
What I ...




