Sequence With T  Method (IEnumerable T )A Sandcastle Documented Class Library
Creates a sequence from a given enumerable.

Namespace: Sequences
Assembly: Sequences (in Sequences.dll) Version: 1.0.1.0 (1.0.1)
Syntax
public static ISequence<T> With<T>(
	IEnumerable<T> items
)

Parameters

items
Type: System.Collections.Generic IEnumerable T 
The enumerable to be evaluated.
Type Parameters
T
The type of elements in the sequence.

Return Value

Type: ISequence T 
A sequence created by lazily-evaluating items.
See Also