Click or drag to resize
MoreEnumerableSplitTSource, TResult Method (IEnumerableTSource, TSource, FuncIEnumerableTSource, TResult)
Splits the source sequence by a separator and then transforms the splits into results.

Namespace:  MoreLinq
Assembly:  MoreLinq (in MoreLinq.dll) Version: 2.2.0
Syntax
public static IEnumerable<TResult> Split<TSource, TResult>(
	this IEnumerable<TSource> source,
	TSource separator,
	Func<IEnumerable<TSource>, TResult> resultSelector
)

Parameters

source
Type: System.Collections.GenericIEnumerableTSource
The source sequence.
separator
Type: TSource
Separator element.
resultSelector
Type: SystemFuncIEnumerableTSource, TResult
Function used to project splits of source elements into elements of the resulting sequence.

Type Parameters

TSource
Type of element in the source sequence.
TResult
Type of the result sequence elements.

Return Value

Type: IEnumerableTResult
A sequence of values typed as TResult.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableTSource. 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