Advanced CSharp – yield

tran-land-05 Have you ever had a situation arise where you want to create a function that returns a collection of results and you want the results to be listed in a for each loop? 

Sure you have.  And I bet I know what your code looked like too:

 

 

public ArrayList CollectionFunction()
{
    ArrayList ar = new ArrayList();
    for (int i = 0; i < 10; i++)
    {
        ar.Add(i * (i + 1));
    }
    return ar;
}

public void CollectionEach()
{
    foreach (object o in CollectionFunction())
        Console.Write(o.ToString());
}

But did you know there is a much easier way to write this code and, as it turns out, it’s much more efficient too.

Instead of creating an array in the CollectionFunction() we can have CSharp take care of all the details by using the yield statement in our loop and making our CollectionFunction return IEnumerable instead of the ArrayList.

Here is the modified code:

public IEnumerable CollectionFunction()
{
    for (int i = 0; i < 10; i++)
    {
        yield return (i * (i + 1));
    }
}

public void CollectionEach()
{
    foreach (int i in CollectionFunction())
        Console.Write(i.ToString());
}

What happens under the hood is that a class is created to implement the behavior we’ve described in the code, meaning that the computation actually occurs AS we are looping through the IEnumerable object rather than building up a list, returning it, and then looping through the results.

 


Other post in Advanced CSharp

Other Related Items:

Yield to the Princess License Plate Frame Cover Decal SetYield to the Princess License Plate Frame Cover Decal SetDress up your vehicle and help protect your valuable license plate with this fun "Yield to the Princess" license plate frame cover and vinyl decal set... Read More >
The Vegan Collection Captain Unisex Brown Pleather BeltThe Vegan Collection Captain Unisex Brown Pleather BeltThis durable vegan belt is built to last! Perfect for the office, or casual everyday wear. It features a high quality synthetic microfiber belt strap ... Read More >

Related Post

2 Responses to “Advanced CSharp – yield”

  • I stumbled upon the yield statement a while ago – absolutely love it and I even considered asking you to write it up. :) But there is an issue with type safety if you are not using System.Collections.Generic. The foreach loop would still compile if written this way:

    foreach (DirectoryInfo i in CollectionFunction())

    Using generics would force you to define IEnumerable:

    public IEnumerable CollectionFunction()

    You would then be prevented from returning or receiving anything other than an int.

    Thank you for a great blog!
    Rick

  • Hmm – looks like the lt and gt were stripped from my code. Amendment:

    public IEnumerable<int> CollectionFunction()

DotNetNuke Sponsor

 

Most Valuable Blogger
Sponsor