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 Join method for IEnumerable.
Syntax
public static string Join<T>(this IEnumerable<T> items, string separator)
Type Parameters
Name |
Description |
T |
The generic type to Join on. |
Parameters
Name |
Type |
Description |
items |
IEnumerable<T> |
The items that need to be joined. |
separator |
string |
The separator to be used when joining the items. |
Return Value
Type |
Description |
string |
A string with all the joined items. |