TwitterProviderExtensions.

Join<T>(IEnumerable<T>, string) Method

Summary

A simple Join method for IEnumerable.
Assembly
Cake.Twitter.dll
Namespace
Cake.Twitter
Containing Type
TwitterProviderExtensions

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.