Skip to content

Instantly share code, notes, and snippets.

@ProductiveRage
Last active February 14, 2020 10:22
Show Gist options
  • Save ProductiveRage/610fb6d816631a318f501ea625628410 to your computer and use it in GitHub Desktop.
Save ProductiveRage/610fb6d816631a318f501ea625628410 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
namespace Tester
{
public static class MyEnumerableExtensions
{
public static IEnumerable<IGrouping<TKey, TSource>> MyGroupBy<TSource, TKey>(
this IEnumerable<TSource> source,
Func<TSource, TKey> keySelector,
IEqualityComparer<TKey> comparer)
{
throw new NotImplementedException();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment