โ Back to Interfaces
Question 639
Implement IEnumerable With yield
Implement IEnumerable With yield
Write aCountdownclass that implementsIEnumerable<int>. Given a start value in its constructor, iterating it withforeachmust produce the numbers fromstartdown to1. Implement both the genericGetEnumerator()(usingyield return) and the non-generic one required byIEnumerable. Do NOT write aMainmethod. Fornew Countdown(3)the program prints: 3 2 1
Expected Output:
3 2 1
Topics:
Interfaces
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.