(T value)
| 9 | internal static class EnumerableExtensions |
| 10 | { |
| 11 | public static IEnumerable<T> Return<T>(T value) |
| 12 | { |
| 13 | yield return value; |
| 14 | } |
| 15 | |
| 16 | /// <summary> |
| 17 | /// Enumerates the sequence and invokes the given action for each value in the sequence. |