Last active
December 18, 2015 13:49
-
-
Save haacked/5793124 to your computer and use it in GitHub Desktop.
An implementation of ToDictionary that provides information about which key had duplicate entries.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class EnumerableExtensions | |
{ | |
public static Dictionary<TKey, TSource> ToDictionaryBetter<TSource, TKey>(this IEnumerable<TSource> source, Func<TSource, TKey> keySelector) | |
{ | |
return source.GroupBy(keySelector).ToDictionary(group => group.Key, group => | |
{ | |
try | |
{ | |
return group.Single(); | |
} | |
catch (InvalidOperationException) | |
{ | |
throw new InvalidOperationException( | |
string.Format("Duplicate item with the key '{0}'", keySelector(@group.First()))); | |
} | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment