How to loop through a collection that supports IEnumerable?
A regular for each will do:
foreach (var item in collection) { // do your stuff }