Partial Classes in C#

With C# 2.0 it is possible to split definition of classes, interfaces and structures over more than one files. This feature allows you to do…

Iterators in C# 2.0

Iterators are some thing pretty cool, they get you to use foreach withouth explicitly implementing IEnumerator/IEnumerable. Some facts about Iterators: (source MSDN) An iterator is…