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