Skip to main content

IOrderedEnumerable<TElement> Interface

Namespace: System.Linq · Assembly: GHIElectronics.TinyCLR.Linq

Represents a sorted sequence. Used as the chain link between OrderBy/OrderByDescending and ThenBy/ThenByDescending.

public interface IOrderedEnumerable<TElement> : IEnumerable<TElement>

Methods

CreateOrderedEnumerable<TKey>(Func<TElement, TKey> keySelector, IComparer<TKey> comparer, bool descending)

IOrderedEnumerable<TElement> CreateOrderedEnumerable<TKey>( Func<TElement, TKey> keySelector, IComparer<TKey> comparer, bool descending)

No description available.

ParameterTypeDescription
keySelectorFunc<TElement, TKey>
comparerIComparer<TKey>
descendingbool

Returns IOrderedEnumerable<TElement>