yield return is a C# construct that's used to create an iterator block, which makes implementing IEnumerable easier.
1
vote
1answer
42 views
Reflection and autogenerated types
I have a class with a single method that uses a "yield" return statement. A nested type is automatically created. Using reflection with binding flags set to BindingFlags.DeclaredOnly, I get this ...
0
votes
2answers
96 views
why a function which has yield return in it cannot be recursive?
i have a piece of code like this
class Program
{
static IEnumerable<string> GetSequences(string a)
{
yield return a;
GetSequences(a + ">");
}
static void ...
0
votes
1answer
165 views
JSon.Net Serialize result of yield return
I am trying to return some data to a webservice using json and the JSon.Net library. One of my functions is an iterator method that lists data using yield return. When I try to serialize this return ...
1
vote
2answers
156 views
IEnumerable with yield return and VS Quickwatch crash
I have the following method that return an IEnumerable
public IEnumerable<ExternalFilter> GetExternalFilters()
{
if (externalfilters == null)
yield break;
foreach ...
2
votes
2answers
108 views
yield return empty character literal
I'm writing a Linq extension method, to make a p455w0rd from a string input.
public static IEnumerable<char> ToPasswordFormat(this IEnumerable<char> source)
{
var enumerator = ...
4
votes
2answers
130 views
A local variable can be named as yield
Just found out
foreach (int yield in items) {
yield return yield * 2;
}
or
int yield = 10;
are valid codes in C#.
I can understand it could be easy for the compiler to differentiate ...
4
votes
3answers
85 views
I am wondering about the state of connection and impact on code performance by 'yield' while iterating over data reader object
Here is my sample code that I am using to fetch data from database:
on DAO layer:
public IEnumerable<IDataRecord> GetDATA(ICommonSearchCriteriaDto commonSearchCriteriaDto)
{
...
4
votes
1answer
117 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 ...
2
votes
5answers
65 views
How to avoid Iterator method being restarted?
Please consider the following C# block:
int resultIndex = 0;
Result firstResult = results.First();
DoAVeryImportOperationWithFirstResult(firstResult);
Console.WriteLine(String.Format("This is the ...
3
votes
3answers
190 views
How to yield from parallel tasks in .NET 4.5
I would like to use .NET iterator with parallel Tasks/await?. Something like this:
IEnumerable<TDst> Foo<TSrc, TDest>(IEnumerable<TSrc> source)
{
Parallel.ForEach(
...
2
votes
2answers
93 views
Is there a way I can combine two separate iterator blocks to one?
I almost know its impossible and meaningless, but just trying to learn.. I have:
public IEnumerable<IEnumerable<object>> GetMany()
{
while (someCondition)
yield return ...
0
votes
0answers
82 views
problems with yield in unity
I have a function to make a simple menu animation in NGUI.
It seems to work great, but when I go ingame and then return to menu, the function is not working properly.
IEnumerator MenuTransition ...
4
votes
2answers
244 views
Unable to cast object of type '<>d__6' to type 'System.Object[]'
I'm trying to lazy load (extension with yield return) the rows in a 2D object array. I get the following error:
c# Unable to cast object of type '<>d__6' to type 'System.Object[]'.
The ...
0
votes
2answers
176 views
How to yield-return to use a callback system where I can't use threading?
So I would like to make an object that has a bunch of static methods to it. The methods are an API to a remote server. I was reading and thought I could use the unity StartCoroutine method but thats ...
2
votes
0answers
182 views
Java iterate huge database table
I have a programme in c# that iterates a very large database query using yield return. The calling method then works on each object by calling the IEnumerable in a parallel.for each. Java does not ...
4
votes
1answer
102 views
Early termination of recursive iterator block method
I have a method that outputs all the permutations of an array using a recursive function:
/// <summary>
/// Yields a sequence of all permutations in lexical order
/// ...
0
votes
1answer
85 views
Recursive enumerator
I'm preparing for an interview, so as an exercise I've implemented algorithm to check if a binary tree is BST.
public static bool CheckBST(this Node root)
{
if (root == null) throw ...
1
vote
1answer
42 views
Change linq to yield return
Is it possible to change this...
var movies = rawMovies.Movies.Select(m => {
var movie = new Movie {
Id = m.Id,
Title = m.Title,
Year = m.Year,
MpaaRating = ...
1
vote
3answers
112 views
yield return usage
Approach 1:
class myClass
{
List<SomeType> _list;
IENumerator<SomeType> GetEnumerator()
{
foreach(SomeType t in _list)
yield return t;
}
}
myClass m = new ...
3
votes
1answer
97 views
Yielding with an IDisposable resource
Is there a proper way to yield through a disposable resource? The returned objects are IDisposable, but the element it is iterating through is.
Here is an example:
public static IEnumerable<T> ...
5
votes
2answers
122 views
What is the proper pattern for handling Enumerable objects with a yield return?
Does there exist a standard pattern for yield returning all the items within an Enumerable?
More often than I like I find some of my code reflecting the following pattern:
public ...
2
votes
1answer
124 views
yield return slow database calls
In my ASP project there is code like this, to populate rr with RegulationGroups
private IEnumerable<RegulationGroup> LoadRegulations(string moduleName)
{
// database calls
yield ...
2
votes
3answers
98 views
How can yield return statement return no elements?
I'm practicing deletion of nodes on a binary search tree, and I created a special type for null links (NullNode) using null pattern, so I can add some desirable behaviour to "null" types. Both Node ...
2
votes
3answers
525 views
yield return new WaitForSeconds(2) destroys function
I decided to create a little memory like game, to learn game development with unity3d.
The game should wait 2 seconds after a player clicked to cards, before it flips the cards back.
The yield return ...
2
votes
3answers
180 views
Reading lines of text from file with Using and Yield Return
I have the method below which uses Yield Return to read large ( >1m ) lines of text from a file.
private static IEnumerable<string> ReadLineFromFile(TextReader fileReader)
{
...
3
votes
2answers
109 views
Easiest way to get rid of 'yield' in (by converting to a state machine) a recursive generator method?
I have a nice, elegant (IMO) piece of code I've written that I want to port to other languages, like C++, Java, etc.
The problem I'm facing is twofold:
The code uses yield
The code is highly ...
3
votes
3answers
164 views
Why using yield return here?
I have found the following method in an open source project:
static IEnumerable<T> Cat<T>(T t) {
yield return t;
}
As far as I understand, it does nothing else than ...
1
vote
1answer
237 views
Why i can't use yield return on lambda expressions [duplicate]
Possible Duplicate:
In C#, why can't an anonymous method contain a yield statement?
I have this code:
Func<IEnumerable<int>> allNumbers = ()=> new []{1,2,3};
foreach ...
2
votes
3answers
88 views
consuming sequence generated by IEnumerable
I would like to use an IEnumerable to generate a sequence of values -- specifically, a list of Excel-like column headers.
private IEnumerable<string> EnumerateSymbolNames()
{
foreach (var sym ...
1
vote
3answers
72 views
Iterator issue on yield IEnumberable
I wrote a program designed to create a randomish list of numbers from a given starting point. It was a quick a dirty thing but I found an interesting effect when playing with it that I don't quite ...
3
votes
3answers
110 views
How do I activate another Enumerator inside the first one
I have two separate actions that are enumerators.
One can be run independently, the other depends on the first to run afterwards.
I though I would be really smart by doing this:
public ...
2
votes
3answers
106 views
Weird IEnumerable behavior in a foreach loop
I have the following method:
public IEnumerable<object> GetParameters(Context context)
{
yield return new[] { 1, 2, 3 };
}
When I loop through this enumeration:
foreach (var parameter in ...
2
votes
2answers
156 views
What is the use of the “yield” keyword in C#? [duplicate]
Possible Duplicate:
Proper Use of yield return
What is the use of the yield keyword in C#?
I didn't understand it from the MSDN reference... can someone explain it to me please?
4
votes
1answer
135 views
Limiting work in progress of parallel operations of a streamed resource
I've found myself recently using the SemaphoreSlim class to limit the work in progress of a parallelisable operation on a (large) streamed resource:
// The below code is an example of the structure ...
3
votes
4answers
220 views
Virtual IEnumerable<T> that compiles empty
I am making a base class that has a virtual method called "GetBaseAddresses()". It has as a return type IEnumerable<Uri>. The base class will not yield any results if enumerated, but a derived ...
6
votes
2answers
178 views
Can you access the IEnumerable as you are yield returning it?
My code below finds all prime numbers below number by creating a list of primes and checking to see if the next potential prime is evenly divisible by any primes in the list.
I'm trying to learn the ...
3
votes
3answers
522 views
yield return when appending values on to the end of an existing IEnumerable
I just found out about yield return, I seems really nice. I use it in a method like this:
public IEnumerable<ValidationResult> Validate(ValidationContext vc)
{
if (Name == "Arbitary")
...
1
vote
3answers
92 views
Yield Return Over Child Objects
I have a list of items ('sections') which has a getter and a setter. Each one of these 'sections' has a list of 'items'. I'd like to provide a yield return property to expose an 'Items' property as an ...
0
votes
5answers
524 views
How to return IEnumerable<T> for a single item
I have a function which can return a list of items or a single item like so below ( pseudocode )
IEnumerable<T> getItems()
{
if ( someCondition.Which.Yields.One.Item )
{
...
6
votes
5answers
533 views
Why can't “return” and “yield return” be used in the same method?
Why can't we use both return and yield return in the same method?
For example, we can have GetIntegers1 and GetIntegers2 below, but not GetIntegers3.
public IEnumerable<int> GetIntegers1()
{
...
0
votes
3answers
336 views
AsEnumerable and how it affects a yield and a SqlDataReader
I'm trying to understand what the affect of AsEnumerable() has over my data when iterating over it. I have a mock in-memory list. If I foreach over it with first calling ToList(), this forces ...
5
votes
3answers
384 views
How to get property name when it uses yield return
How do i get property name of the executing property. If the property uses "return" then
MethodBase.GetCurrentMethod().Name returns the name of the property. But when I use "yield return" ...
4
votes
1answer
298 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 ...
3
votes
2answers
780 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 ...
3
votes
2answers
137 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 ...
1
vote
2answers
250 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 ...
6
votes
2answers
287 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 ...
2
votes
2answers
312 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 ...
6
votes
2answers
2k 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 = ...
4
votes
4answers
323 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 ...


