main
1using System;
2using System.Collections.Generic;
3
4namespace tests
5{
6 static class Iterating
7 {
8 static public void each<T>(this IEnumerable<T> items, Action<T> action)
9 {
10 foreach (var item in items) action(item);
11 }
12 }
13}