This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see
Cake.Twitter.
Summary
A simple Concat method for IEnumerable.
Syntax
public static IEnumerable<T> Concat<T>(this IEnumerable<T> items, T value)
Type Parameters
Name |
Description |
T |
The generic type to concatentate on. |
Parameters
Name |
Type |
Description |
items |
IEnumerable<T> |
The items that need to be concatenated. |
value |
T |
The value that is to be concatenated into the items. |
Return Value
Type |
Description |
IEnumerable<T> |
An IEnumerable with the items concatenated to it. |