MoreEnumerablePartitionT, TResult Method (IEnumerableIGroupingBoolean, T, FuncIEnumerableT, IEnumerableT, TResult) | 
 
            Partitions a grouping by Boolean keys into a projection of true
            elements and false elements, respectively.
            
 
    Namespace: 
   MoreLinq
    Assembly:
   MoreLinq (in MoreLinq.dll) Version: 2.5.0
Syntaxpublic static TResult Partition<T, TResult>(
	this IEnumerable<IGrouping<bool, T>> source,
	Func<IEnumerable<T>, IEnumerable<T>, TResult> resultSelector
)
<ExtensionAttribute>
Public Shared Function Partition(Of T, TResult) ( 
	source As IEnumerable(Of IGrouping(Of Boolean, T)),
	resultSelector As Func(Of IEnumerable(Of T), IEnumerable(Of T), TResult)
) As TResult
public:
[ExtensionAttribute]
generic<typename T, typename TResult>
static TResult Partition(
	IEnumerable<IGrouping<bool, T>^>^ source, 
	Func<IEnumerable<T>^, IEnumerable<T>^, TResult>^ resultSelector
)
[<ExtensionAttribute>]
static member Partition : 
        source : IEnumerable<IGrouping<bool, 'T>> * 
        resultSelector : Func<IEnumerable<'T>, IEnumerable<'T>, 'TResult> -> 'TResult 
Parameters
- source
 - Type: System.Collections.GenericIEnumerableIGroupingBoolean, T
The source sequence. - resultSelector
 - Type: SystemFuncIEnumerableT, IEnumerableT, TResult
            Function that projects the result from sequences of true elements
            and false elements, respectively, passed as arguments.
             
Type Parameters
- T
 - Type of elements in source groupings.
 - TResult
 - Type of the result.
 
Return Value
Type: 
TResult
            The return value from 
resultSelector.
            
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type 
IEnumerableIGroupingBoolean, 
T. 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