A lot of people have been quick to point out the fact that .Net 1.1 does not have generics, even though I forgot to mention that fact also. In response to this, here is how you can implement the ListEnumerable in a pre 2.0 environment: public class ListEnumerable : IEnumerable { private IList itemsToEnumerate;...