I have an IEnumerable and an IEnumerable that I want merged into an IEnumerable where
Look at nextension:
Currently Implemented Methods
IEnumerable
- ForEach Performs a specified action on each element of the IEnumerable.
- Clump Groups items into same size lots.
- Scan Creates a list by applying a delegate to pairs of items in the IEnumerable.
- AtLeast Checks there are at least a certain amount of items in the IEnumerable.
- AtMost Checks there are no more than a certain amount of items in the IEnumerable.
- Zip Creates a list by combining two other lists into one.
- Cycle Creates a list by repeating another list.