New issue 18 by azizatif: Enumerable.ToLookup has incorrect return type
http://code.google.com/p/backlinq/issues/detail?id=18
All overloads of Enumerable.ToLookup have the incorrect return type of
Lookup<TKey, TSource> instead of the interface type ILookup<TKey,
TSource>. For example, intead of:
public static Lookup<TKey, TSource> ToLookup<TSource, TKey>(
this IEnumerable<TSource> source,
Func<TSource, TKey> keySelector)
It should be:
public static ILookup<TKey, TSource> ToLookup<TSource, TKey>(
this IEnumerable<TSource> source,
Func<TSource, TKey> keySelector)
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
Comment #1 on issue 18 by azizatif: Enumerable.ToLookup has incorrect
return type
http://code.google.com/p/backlinq/issues/detail?id=18
(No comment was entered for this change.)