Click or drag to resize

MoreEnumerable.Split Method

Overload List
  NameDescription
Public methodStatic memberSplit<TSource>(IEnumerable<TSource>, Func<TSource, Boolean>)
Splits the source sequence by separator elements identified by a function.
Public methodStatic memberSplit<TSource>(IEnumerable<TSource>, TSource)
Splits the source sequence by a separator.
Public methodStatic memberSplit<TSource, TResult>(IEnumerable<TSource>, Func<TSource, Boolean>, Func<IEnumerable<TSource>, TResult>)
Splits the source sequence by separator elements identified by a function and then transforms the splits into results.
Public methodStatic memberSplit<TSource>(IEnumerable<TSource>, Func<TSource, Boolean>, Int32)
Splits the source sequence by separator elements identified by a function, given a maximum count of splits.
Public methodStatic memberSplit<TSource>(IEnumerable<TSource>, TSource, IEqualityComparer<TSource>)
Splits the source sequence by a separator and then transforms the splits into results.
Public methodStatic memberSplit<TSource, TResult>(IEnumerable<TSource>, TSource, Func<IEnumerable<TSource>, TResult>)
Splits the source sequence by a separator and then transforms the splits into results.
Public methodStatic memberSplit<TSource>(IEnumerable<TSource>, TSource, Int32)
Splits the source sequence by a separator given a maximum count of splits.
Public methodStatic memberSplit<TSource, TResult>(IEnumerable<TSource>, Func<TSource, Boolean>, Int32, Func<IEnumerable<TSource>, TResult>)
Splits the source sequence by separator elements identified by a function, given a maximum count of splits, and then transforms the splits into results.
Public methodStatic memberSplit<TSource, TResult>(IEnumerable<TSource>, TSource, IEqualityComparer<TSource>, Func<IEnumerable<TSource>, TResult>)
Splits the source sequence by a separator and then transforms the splits into results. A parameter specifies how the separator is compared for equality.
Public methodStatic memberSplit<TSource>(IEnumerable<TSource>, TSource, IEqualityComparer<TSource>, Int32)
Splits the source sequence by a separator, given a maximum count of splits. A parameter specifies how the separator is compared for equality.
Public methodStatic memberSplit<TSource, TResult>(IEnumerable<TSource>, TSource, Int32, Func<IEnumerable<TSource>, TResult>)
Splits the source sequence by a separator, given a maximum count of splits, and then transforms the splits into results.
Public methodStatic memberSplit<TSource, TResult>(IEnumerable<TSource>, TSource, IEqualityComparer<TSource>, Int32, Func<IEnumerable<TSource>, TResult>)
Splits the source sequence by a separator, given a maximum count of splits, and then transforms the splits into results. A parameter specifies how the separator is compared for equality.
Top
See Also