MoreEnumerableIndexByTSource, TKey(IEnumerableTSource, FuncTSource, TKey) Method
            Applies a key-generating function to each element of a sequence and
            returns a sequence that contains the elements of the original
            sequence as well its key and index inside the group of its key.
            
Namespace: MoreLinqAssembly: MoreLinq (in MoreLinq.dll) Version: 4.4.0+6d97c3b1d482f98300f4446df14742b0e3fafbec
public static IEnumerable<KeyValuePair<int, TSource>> IndexBy<TSource, TKey>(
	this IEnumerable<TSource> source,
	Func<TSource, TKey> keySelector
)
<ExtensionAttribute>
Public Shared Function IndexBy(Of TSource, TKey) ( 
	source As IEnumerable(Of TSource),
	keySelector As Func(Of TSource, TKey)
) As IEnumerable(Of KeyValuePair(Of Integer, TSource))
public:
[ExtensionAttribute]
generic<typename TSource, typename TKey>
static IEnumerable<KeyValuePair<int, TSource>>^ IndexBy(
	IEnumerable<TSource>^ source, 
	Func<TSource, TKey>^ keySelector
)
[<ExtensionAttribute>]
static member IndexBy : 
        source : IEnumerable<'TSource> * 
        keySelector : Func<'TSource, 'TKey> -> IEnumerable<KeyValuePair<int, 'TSource>> 
- source  IEnumerableTSource
- Source sequence.
- keySelector  FuncTSource, TKey
- 
            Function that projects the key given an element in the source sequence.
- TSource
- Type of the source sequence elements.
- TKey
- Type of the projected key.
IEnumerableKeyValuePairInt32, 
TSource
            A sequence of elements paired with their index within the key-group.
            The index is the key and the element is the value of the pair.
            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).