Sequence Take TSource  Method A Sandcastle Documented Class Library
Returns a specified number of contiguous elements from the start of a sequence.

Namespace: Sequences
Assembly: Sequences (in Sequences.dll) Version: 1.0.1.0 (1.0.1)
Syntax
public static ISequence<TSource> Take<TSource>(
	this ISequence<TSource> source,
	int count
)

Parameters

source
Type: Sequences ISequence TSource 
The sequence to return elements from.
count
Type: System Int32
The number of elements to return.
Type Parameters
TSource
The type of the elements of source.

Return Value

Type: ISequence TSource 
A sequence that contains the specified number of elements from the start of the input sequence.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ISequence TSource . When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also