Click or drag to resize
JumpListHelperToAlphaGroupsTSource Method
Groups and sorts into a list of alpha groups based on a string selector.

Namespace: foodez.Common.JumpList
Assembly: foodez.WindowsPhone (in foodez.WindowsPhone.exe) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static List<JumpListGroup<TSource>> ToAlphaGroups<TSource>(
	this IEnumerable<TSource> source,
	Func<TSource, string> selector
)

Parameters

source
Type: System.Collections.GenericIEnumerableTSource
List to be grouped and sorted.
selector
Type: SystemFuncTSource, String
A selector that will provide a value that items to be sorted and grouped by.

Type Parameters

TSource
Type of the items in the list.

Return Value

Type: ListJumpListGroupTSource
A list of JumpListGroups.

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