| MoreEnumerableGroupAdjacentTSource, TKey, TElement Method (IEnumerableTSource, FuncTSource, TKey, FuncTSource, TElement, IEqualityComparerTKey) | 
 
            Groups the adjacent elements of a sequence according to a 
            specified key selector function. The keys are compared by using 
            a comparer and each group's elements are projected by using a 
            specified function.
            
 
    Namespace: 
   MoreLinq
    Assembly:
   MoreLinq (in MoreLinq.dll) Version: 2.7.0
 Syntax
Syntaxpublic static IEnumerable<IGrouping<TKey, TElement>> GroupAdjacent<TSource, TKey, TElement>(
	this IEnumerable<TSource> source,
	Func<TSource, TKey> keySelector,
	Func<TSource, TElement> elementSelector,
	IEqualityComparer<TKey> comparer
)
<ExtensionAttribute>
Public Shared Function GroupAdjacent(Of TSource, TKey, TElement) ( 
	source As IEnumerable(Of TSource),
	keySelector As Func(Of TSource, TKey),
	elementSelector As Func(Of TSource, TElement),
	comparer As IEqualityComparer(Of TKey)
) As IEnumerable(Of IGrouping(Of TKey, TElement))
public:
[ExtensionAttribute]
generic<typename TSource, typename TKey, typename TElement>
static IEnumerable<IGrouping<TKey, TElement>^>^ GroupAdjacent(
	IEnumerable<TSource>^ source, 
	Func<TSource, TKey>^ keySelector, 
	Func<TSource, TElement>^ elementSelector, 
	IEqualityComparer<TKey>^ comparer
)
[<ExtensionAttribute>]
static member GroupAdjacent : 
        source : IEnumerable<'TSource> * 
        keySelector : Func<'TSource, 'TKey> * 
        elementSelector : Func<'TSource, 'TElement> * 
        comparer : IEqualityComparer<'TKey> -> IEnumerable<IGrouping<'TKey, 'TElement>> 
Parameters
- source
- Type: System.Collections.GenericIEnumerableTSource
 A sequence whose elements to group.
- keySelector
- Type: SystemFuncTSource, TKey
 A function to extract the key for each 
            element.
- elementSelector
- Type: SystemFuncTSource, TElement
 A function to map each source 
            element to an element in the resulting grouping.
- comparer
- Type: System.Collections.GenericIEqualityComparerTKey
 An IEqualityComparerT to 
            compare keys.
Type Parameters
- TSource
- The type of the elements of 
            source.
- TKey
- The type of the key returned by 
            keySelector.
- TElement
- The type of the elements in the
            resulting groupings.
Return Value
Type: 
IEnumerableIGroupingTKey, 
TElementA sequence of groupings where each grouping
            (
IGroupingTKey, TElement) contains the key
            and the adjacent elements (of type 
TElement) 
            in the same order as found in the source sequence.
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).
 Remarks
Remarks
            This method is implemented by using deferred execution and 
            streams the groupings. The grouping elements, however, are 
            buffered. Each grouping is therefore yielded as soon as it 
            is complete and before the next grouping occurs.
            
 See Also
See Also