Unified iterators for all enumerables
Can we please get a way to iterate arrays, IEnumerables, and lists in the same way?
For Arrays, we have a static (non-extension) method on Array, ForEach. For List<T>, we have an instance method ForEach. For IEnumerable, we don't have any way.
Can anyone explain the design or idea here?
-Michael

