Выражать аргументы обобщенного типа C # более кратко? - PullRequest
0 голосов
/ 12 марта 2012

Вдохновленный

Сравнение двух коллекций на равенство независимо от порядка элементов в них

Я создал метод расширения, чтобы проверить, эквивалентны ли две коллекции.Чтобы использовать метод расширения, я должен указать два параметра типа, например:

IsEquivalentToTestHelper<ObservableCollection<string>, string>(first, second, true);

Есть ли способ реализовать метод расширения, чтобы было указано только одно общее ограничение (например, ObservableCollection<string>)?

ОБНОВЛЕНИЕ : отправил измененный код на основе ответов в виде дополнительного ответа на вопрос, который вдохновил меня на этот вопрос.

Вот мой оригинальный код:

static public class EnumerableExtensions 
{
    static public bool IsEquivalentTo<E,T>(this E first, E second) where E : IEnumerable<T>
    {
        if ((first == null) != (second == null))
            return false;

        if (!object.ReferenceEquals(first, second) && (first != null))
        {
            if (first.Count() != second.Count())
                return false;

            if ((first.Count() != 0) && HaveMismatchedElement<E,T>(first, second))
                return false;
        }

        return true;
    }

    private static bool HaveMismatchedElement<E,T>(E first, E second) where E : IEnumerable<T>
    {
        int firstCount;
        int secondCount;

        var firstElementCounts = GetElementCounts<E,T>(first, out firstCount);
        var secondElementCounts = GetElementCounts<E,T>(second, out secondCount);

        if (firstCount != secondCount)
            return true;

        foreach (var kvp in firstElementCounts)
        {
            firstCount = kvp.Value;
            secondElementCounts.TryGetValue(kvp.Key, out secondCount);

            if (firstCount != secondCount)
                return true;
        }

        return false;
    }

    private static Dictionary<T, int> GetElementCounts<E,T>(E enumerable, out int nullCount) where E : IEnumerable<T>
    {
        var dictionary = new Dictionary<T, int>();
        nullCount = 0;

        foreach (T element in enumerable)
        {
            if (element == null)
            {
                nullCount++;
            }
            else
            {
                int num;
                dictionary.TryGetValue(element, out num);
                num++;
                dictionary[element] = num;
            }
        }

        return dictionary;
    }

    static private int GetHashCode<E,T>(IEnumerable<T> enumerable) where E : IEnumerable<T>
    {
        int hash = 17;

        foreach (T val in enumerable.OrderBy(x => x))
            hash = hash * 23 + val.GetHashCode();

        return hash;
    }
}

Ответы [ 3 ]

4 голосов
/ 12 марта 2012
static public bool IsEquivalentTo<T>(this IEnumerable<T> first, IEnumerable<T> second) 
2 голосов
/ 12 марта 2012

Вы можете оставить первый и оставить второй:

static public bool IsEquivalentTo<T>(this IEnumerable<T> first, IEnumerable<T> second)
1 голос
/ 12 марта 2012

Вам просто нужно заменить каждые E на IEnumerable<T> и отбросить операторы where

Например:

static public bool IsEquivalentTo<T>(this IEnumerable<T> first, IEnumerable<T> second)

var firstElementCounts = GetElementCounts<IEnumerable<T>,T>(first, out firstCount);

static private int GetHashCode<T>(IEnumerable<T> enumerable)
...