12 lines
340 B
C#
12 lines
340 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace uNature.Wrappers.Linq
|
|
{
|
|
public interface IOrderedEnumerable<TElement> : IEnumerable<TElement>, IEnumerable
|
|
{
|
|
IOrderedEnumerable<TElement> CreateOrderedEnumerable<TKey>(Func<TElement, TKey> keySelector, IComparer<TKey> comparer, bool descending);
|
|
}
|
|
}
|