Skip to content

M_CodeJam_Collections_EnumerableExtensions_OrderByDescending__1

andrewvk edited this page Mar 30, 2016 · 7 revisions

EnumerableExtensions.OrderByDescending(TSource) Method

[This is preliminary documentation and is subject to change.]

Sorts the elements of a sequence in descending order.

Namespace: CodeJam.Collections
Assembly: CodeJam (in CodeJam.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#

[NotNullAttribute]
[PureAttribute]
public static IOrderedEnumerable<TSource> OrderByDescending<TSource>(
	[NotNullAttribute] this IEnumerable<TSource> source
)

VB

<ExtensionAttribute>
<NotNullAttribute>
<PureAttribute>
Public Shared Function OrderByDescending(Of TSource) ( 
	<NotNullAttribute> source As IEnumerable(Of TSource)
) As IOrderedEnumerable(Of TSource)

F#

[<ExtensionAttribute>]
[<NotNullAttribute>]
[<PureAttribute>]
static member OrderByDescending : 
        [<NotNullAttribute>] source : IEnumerable<'TSource> -> IOrderedEnumerable<'TSource> 

Parameters

 

source
Type: System.Collections.Generic.IEnumerable(TSource)
A sequence of values to order.

Type Parameters

 

TSource
The type of the elements of source.

Return Value

Type: IOrderedEnumerable(TSource)
An IOrderedEnumerable(TElement) whose elements are sorted.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerable(TSource). 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

Reference

EnumerableExtensions Class
CodeJam.Collections Namespace

Clone this wiki locally