A couple of fixes for TimeZoneInfo.ConvertTime.
[mono.git] / mcs / class / System.Core / System.Linq / IOrderedEnumerable_T.cs
index d87417072c7c0c7b25b4e436ed0869b547c7a073..6d9d2294a8732a7096d7dad23818e96243383448 100644 (file)
@@ -30,7 +30,8 @@ using System.Collections.Generic;
 
 namespace System.Linq {
 
-       public interface IOrderedEnumerable<TElement> : IEnumerable<TElement> {
-               IOrderedEnumerable<TElement> CreateOrderedEnumerable<TKey> (Func<TElement, TKey> selector, IComparer<TKey> comparer, bool descending);
+       public interface IOrderedEnumerable<TElement> : IEnumerable<TElement>
+       {
+               IOrderedEnumerable<TElement> CreateOrderedEnumerable<TKey> (Func<TElement, TKey> keySelector, IComparer<TKey> comparer, bool descending);
        }
 }