TwitterProviderExtensions.

Concat<T>(IEnumerable<T>, T) Method

Summary

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

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.