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

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

Parameters

items
Type:  T 
The elements for which a sequence will be created.
Type Parameters
T
The type of elements in the sequence.

Return Value

Type: ISequence T 
A sequence created from the elements in items.
See Also