Tagged Questions
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 ...
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
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 ...
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 ...
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
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 ...
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 { ...