Tagged Questions
51
votes
10answers
17k 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 ...
27
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, ...
24
votes
9answers
3k 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
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
395 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
235 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
291 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
309 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
216 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
325 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 ...
6
votes
2answers
237 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
427 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
71 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
447 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
...
5
votes
6answers
782 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
1answer
401 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
1answer
60 views
Rhino Mock to execute yield return
I'm trying to write a unit test to check for parsing errors. I'm streaming data in from a file, parsing it and returning the parsed result with yield return, then passing it to a data layer to bulk ...
4
votes
4answers
102 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
3answers
168 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
150 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
275 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
5answers
296 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
72 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
137 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
81 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
92 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
230 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
4answers
234 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
189 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
258 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
303 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 ...
2
votes
4answers
162 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
461 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
179 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
711 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
57 views
Recursion with yield return elements order in tree
I have a recursive function that returns all subtree nodes, given the starting root node.
private IEnumerable<Node> getAllNodesRecursively(Node subnode)
{
foreach (Node node in ...
1
vote
2answers
75 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
vote
2answers
82 views
Partition a list into subsets
I have a list of items which I would like to partition into subsets. For the sake of discussion lets say they're files. I would like each subset to contain at most 5 files, and for the total size of ...
1
vote
6answers
173 views
BinaryWriter problem - “code adds some byte between Write() method”
I am try to do some code using BinaryWriter and Then BinaryReader.
When I wanna write I use method Write().
But the problem is that between two lines of Write method there appears a new byte which is ...
1
vote
2answers
253 views
c# recursive function help understanding how it works?
I need help to understand how a function is working;: it is a recursive function with yield return but I can't figure out how it works. It is used calculate a cumulative density function (approximate) ...
1
vote
3answers
252 views
Using yield keyword in a loop to update progressbar in C#
Can I update a progress of a loop using the yield keyword?
foreach(something obj in somelist)
{
yield return obj;
}
I know I can do this, but how do I use the values to update a progress bar ?
...
1
vote
1answer
98 views
ASP.NET - Static Variables & State Machines -Will one user affect another?
I have implemented some functionality in C# using the yield statement with the function returning an IEnumerable.
My question is that if this function is a static function in a static class, does it ...
1
vote
3answers
230 views
iterator block to LINQ
I'm having a hard time finding the right LINQ syntax to use for the following iterator block:
class Program
{
class Operation
{
public IEnumerable<Operation> NextOperations { ...
1
vote
3answers
415 views
If yield return never occurs, is null returned?
The method returns IEnumerable via a yield return statement.
If the yield statement never occurs (it's inside conditional logic), will the method return null, or will it return an Enumerable with a ...
0
votes
2answers
117 views
How do I get every combination of strings in a set order using recursion?
This question is related to my earlier question, asked here:
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 ...