using System.Collections.Generic; namespace Octokit { public class WebHookConfigComparer : IEqualityComparer> { public bool Equals(KeyValuePair x, KeyValuePair y) { return x.Key == y.Key; } public int GetHashCode(KeyValuePair obj) { return obj.Key.GetHashCode(); } } }