This sample shows how to create a list class which implements IEnumerable<int> and the yield keyword to enable foreach iteration over the contents of the list. Two properties are defined, one returning the odd numbers, the other returning the even numbers.
Security Note |
---|
This sample code is provided to illustrate a concept and should not be used in applications or Web sites, as it may not illustrate the safest coding practices. Microsoft assumes no liability for incidental or consequential damages should the sample code be used for purposes other than as intended. |
To build and run the Yield Code sample within Visual Studio
On the Debug menu, click Start Without Debugging.
To build and run the Yield Code sample from the Command Line
Use the Change Directory (cd) command to change to the Yield directory.
Type the following:
csc Yield.cs Yield