Wednesday 20 January 2021

Implementing IEnumerable

The C# foreach loop works on any standard collection, but what do we need to do to make it work on collections we've written for ourselves?

Topics include:
  • C#
  • foreach
  • IEnumerable<T>
  • IEnumerator<T>
  • LINQ
  • Extension methods
Related videos:

No comments:

Post a Comment

The State Pattern

  How many developers does it take to change a lightbulb? With the State pattern, not very many. Topics include: The State Pattern Design Pa...