Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

49
votes
10answers
16k views

C# - Proper Use of yield return

The yield keyword is one of those keywords in C# that continues to mystify me and I've never been confident that I'm using it correctly. Of the following two pieces of code, which is the preferred ...
43
votes
11answers
2k views

When NOT to use yield (return) [closed]

There are several useful questions here on SO about the benefits of yield return. For example, Can someone demystify the yield keyword Interesting use of the c# yield keyword What is the yield ...
26
votes
4answers
3k views

In C#, why can't an anonymous method contain a yield statement?

I thought it would be nice to do something like this (with the lambda doing a yield return): public IList<T> Find<T>(Expression<Func<T, bool>> expression) where T : class, ...
23
votes
9answers
2k views

What is the purpose/advantage of using yield return iterators in C#?

All of the examples I've seen of using yield return x; inside a C# method could be done in the same way by just returning the whole list. In those cases, is there any benefit or advantage in using the ...
18
votes
2answers
3k views

Implementing yield (yield return) using Scala continuations

How might one implement C# yield return using Scala continuations? I'd like to be able to write Scala Iterators in the same style. A stab is in the comments on this Scala news post, but it doesn't ...
17
votes
3answers
3k views

Is there a Java equivalent to C#'s 'yield' keyword?

I know there is no direct equivalent in Java itself, but perhaps a third party? It is really convenient. Currently I'd like to implement an iterator that yields all nodes in a tree, which is about ...
17
votes
4answers
2k views

Nested yield return with IEnumerable

I have the following function to get validation errors for a card. My question relates to dealing with GetErrors. Both methods have the same return type IEnumerable<ErrorInfo>. private static ...
15
votes
5answers
381 views

How to handle an “infinite” IEnumerable?

A trivial example of an "infinite" IEnumerable would be IEnumerable<int> Numbers() { int i=0; while(true) { yield return unchecked(i++); } } I know, that foreach(int i in ...
12
votes
2answers
1k views

yield return statement inside a using() { } block Disposes before executing

I've written my own custom data layer to persist to a specific file and I've abstracted it with a custom DataContext pattern. This is all based on the .NET 2.0 Framework (given constraints for the ...
11
votes
5answers
2k views

Is yield return in C# thread-safe?

I have the following piece of code: private Dictionary<object, object> items = new Dictionary<object, object>; public IEnumerable<object> Keys { get { foreach ...
10
votes
8answers
228 views

C# compiler not recognizing yield return methods as similar?

If I have two yield return methods with the same signature, the compiler does not seem to be recognizing them to be similar. I have two yield return methods like this: public static ...
9
votes
2answers
271 views

Yield return inside usings

If I recall correctly that when I used yield inside using SqlConnection blocks I got runtime exceptions. using (var connection = new SqlConnection(connectionString)) { var command = new ...
9
votes
4answers
298 views

C# - Serialization and the Yield statement

Is it possible to serialize a method containing yield statements (or a class that contains such a method) such that when you rehydrate the class, the internal state of the generated iterator is ...
7
votes
3answers
213 views

Problem using C# iterator methods with code access security

I have a simple method that uses an iterator block to return an IEnumerable<T>: IEnumerable<MyItem> GetItems() { foreach (var item in Items) { yield return item; } } ...
7
votes
4answers
315 views

Is there ever a reason to not use 'yield return' when returning an IEnumerable?

Simple example - you have a method or a property that returns an IEnumerable and the caller is iterating over that in a foreach() loop. Should you always be using 'yield return' in your IEnumerable ...
7
votes
6answers
5k views

Can I implement yield return for IEnumerable functions in VB.NET?

In C#, when writing a function that returns an IEnumerble<>, you can use yield return to return a single item of the enumeration and yield break; to signify no remaining items. What is the ...
6
votes
2answers
226 views

Changing a method that has “return” and “yield return”

I know it's impossible to use return and yield return in the same method. This is the code that I would like to optimize: public IEnumerable<TItem> GetItems(int data) { if ...
6
votes
1answer
400 views

yield return and return

I often find myself writing sth. like this: if (condition) { yield return whatever; yield break; } I find it quite verbose to have to use two yield statements for the standard paradigm "return ...
6
votes
3answers
1k views

How does this function work in detail?

I got this method (inside a Unity C# Script), but I do not understand how the "yield" part actually works. I know from the MSDN that the function will return an IEnumerator which I could iterate ...
5
votes
1answer
68 views

Cannot print to console using yield return

In the tests below, I cannot get Console.WriteLine to really print when using yield return. I'm experimenting with yield return and I understand I have something missing in my understanding of it, but ...
5
votes
6answers
710 views

yield return with try catch, how can i solve it

I've a piece of code: using (StreamReader stream = new StreamReader(file.OpenRead(), Encoding)) { char[] buffer = new char[chunksize]; while (stream.Peek() >= 0) { int readCount ...
5
votes
3answers
387 views

Is it posible in scala to use yield to generate Iterator instead of list?

Is it posible to use yield as iterator without evaluation every value? It is common task when it is easy to implement complex list generation, and then you need to convert it into iterator because you ...
5
votes
1answer
394 views

Scala implementation of C#-like yield with “for”

I'm trying to use various scala implementations of C#-like yield return (i.e. link text) with "for" -constructions such as: private def permutations[T](s: Vector[T]) = { def swap(i: Int, j: Int) { ...
5
votes
1answer
383 views

yield returns within lock statement

if i have a yield return in a lock statement does the lock get taken out on each yield (5 times in the example below) or only once for all the items in the list? Thanks private ...
4
votes
4answers
90 views

Syntax issue IEnumerable<T> method using yield return

Here is my method : static IEnumerable<DateTime> GetMonths(DateTime from, DateTime to) { // if logs is not uptodate TimeSpan logsMissingTimespan = to - from; if ...
4
votes
2answers
128 views

Returning and iterable collection using yield in scala

I have a DateTime and TimeSpan class in Scala (assume that the < and + operators work as they should). I'm trying to define a 'range' function that takes a start/stop time and a timespan for ...
4
votes
3answers
159 views

How do I get every combination of letters using yield return and recursion?

I have several lists of strings like so, from a possible list of several dozen: 1: { "A", "B", "C" } 2: { "1", "2", "3" } 3: { "D", "E", "F" } These three were only picked as an example, and the ...
4
votes
3answers
140 views

Iterating over a custom collection of objects with yield and foreach without boxing/unboxing

I'm trying to take advantage of iterators in C# to clean up some spatial queries on objects in a game I'm making. Here's what I'm doing currently: public struct ObjectInfo { public ...
4
votes
2answers
254 views

C#'s `yield return` is creating a lot of garbage for me. Can it be helped?

I'm developing an Xbox 360 game with XNA. I'd really like to use C#'s yield return construct in a couple of places, but it seems to create a lot of garbage. Have a look at this code: class ...
4
votes
6answers
380 views

How to yield return inside anonymous methods?

Basically I have an anonymous method that I use for my BackgroundWorker: worker.DoWork += ( sender, e ) => { foreach ( var effect in GlobalGraph.Effects ) { // Returns EffectResult ...
4
votes
5answers
287 views

The wonders of the yield keyword

Ok, as I was poking around with building a custom enumerator, I had noticed this behavior that concerns the yield Say you have something like this: public class EnumeratorExample { ...
4
votes
4answers
1k views

Using IEnumerable without foreach loop

I've gotta be missing something simple here. Take the following code: public IEnumerable<int> getInt(){ for(int i = 0; i < 10; i++){ yield return i; } } I can call this with: ...
3
votes
2answers
67 views

C# Ensuring an iterator method finishes gracefully

I tested this block of code and find that the GetInts method does not exit the method and print "GetInts disconnected" as i would expect, traditionally. I want to write a scroll control that ...
3
votes
2answers
106 views

Parallel.Foreach + yield return?

I want to process something using parallel loop like this : public void FillLogs(IEnumerable<IComputer> computers) { Parallel.ForEach(computers, cpt=> { cpt.Logs = ...
3
votes
4answers
78 views

Why does calling Enumerable.First() appear to return a copy of the first item in the enumeration

Er, not quite sure how to phrase this but.. Given an IEnumerable created using yield return, containing three instances of a class, why does calling .First() seem to return a 'copy' of the first ...
3
votes
3answers
84 views

C# : Building java-style enums with inheritance

I am looking to build a java-style enum pattern for C# that also supports inheritance. I'm having trouble with yield return. Specifically, returning the BaseEnum's Values from the ChildEnum's Values ...
3
votes
2answers
203 views

Yield return from a try/catch block

As Eric Lippert described in this article, yield return is not allowed within try/catch clauses. Is there a nice way I could get something like this, without having to write my own IEnumerator by ...
3
votes
2answers
78 views

.NET IEnumerator<string> not advancing on MoveNext when in yield block

The code below (for running in LinqPad) is meant to parse the "foo/skip/bar" string into item objects, skipping over the 'skip' bit, yielding Item objects for "foo" and "bar". When run, 2 "bar" items ...
3
votes
4answers
215 views

Simplify writing custom iterators in Java

Writing iterators for custom collections in Java is quite complicated, because instead of writing straight-forward code that provides one element after the other, you essentially have to write a state ...
3
votes
5answers
175 views

.NET iterator to wrap throwing API

I have a class with an API that allows me to ask for objects until it throws an IndexOutOfBoundsException. I want to wrap it into an iterator, to be able to write cleaner code. However, I need to ...
3
votes
3answers
248 views

What concrete type does 'yield return' return?

What is the concrete type for this IEnumerable<string>? private IEnumerable<string> GetIEnumerable() { yield return "a"; yield return "a"; yield return "a"; }
3
votes
3answers
293 views

Is this a dangerous locking pattern?

I have an enumerator written in C#, which looks something like this: try { ReadWriteLock.EnterReadLock(); yield return foo; yield return bar; yield return bash; } finally { if ...
3
votes
3answers
614 views

Problem with debug watch in Visual Studio with yield return enumerator methods

I have a method which returns an IEnumerable<> which it builds up using the yield return syntax: namespace Validation { public class UserValidator { public ...
3
votes
2answers
143 views

Method not called when using yield return

I'm having a little trouble with a method in which I use yield return this doesn't work... public IEnumerable<MyClass> SomeMethod(int aParam) { foreach(DataRow row in ...
3
votes
4answers
341 views

Can you yield return into an IList<T>?

In my service layer for my MVC application I am attempting to convert the linq to sql entity results into my business model entities. I am currently attempting the following code: public ...
2
votes
4answers
157 views

Length of Yield Return

Is there a way to get the number of yield returns from within a function without keeping a counter variable? For instance? IEnumerable<someobject> function { for loop yield ...
2
votes
3answers
407 views

Converting an IEnumberable<string> to IEnumberable<ListItem>

I'm getting this error which while trying to use the yield return feature in C#. The error appears on the select inside visual studio and I don't really understand it. In my mind I'm converting a ...
2
votes
1answer
174 views

ControlCollection extension method optimization

got question regarding an extension method that I have written that looks like this: public static IEnumerable<T> FindControlsOfType<T>(this ControlCollection instance) where T : class { ...
2
votes
3answers
700 views

How does the NerdDinner example's Dinner.GetRuleViolations function return a list?

From what I've read, yield return <value> jumps out of the function the moment the line is executed. However, Scott Guthrie's text indicates that var errors = dinner.GetRuleViolations(); ...
1
vote
2answers
63 views

Alternative Way To Write Yield

Is there a way to get rid of the .FirstOrDefault() with the following setup. I love using the yield statement but I want to condense the IsRequired method to the point where I dont have to use ...

1 2