0

我有以下设置:

struct Item { }

class Entry : List<Item> { }

在我作为类型参数传递的泛型类中,Entry我试图获取List<Item>.Count.

我已经尝试过以下方法:

var c = typeof(T).GetProperty("Count").GetMethod.Invoke(X, new object[]{}); // x is the variable in the generic class of type T!

我也试过

var c = (x as ICollection).Count;
// throws Cannot cast '((Entry)X)' (which has an actual type of 'Entry') to 'System.Collections.Generic.List<Item>'

现在我真的不知道如何获得 Count :(

泛型类的代码:这个想法是有一个字段来记住一个特定的起始值,然后在它被改变时给出反馈。

SyncField<T>
{
    T O { get; private set; }
    T V { get; private set; }

    public bool HasChanged
    {
        get
        {
            if (V != null && O != null)
            {
                var func = typeof(T).GetProperty("Count");
                if (func != null)
                {
                    var oc = func.GetMethod.Invoke(O, new object[] { });
                    var vc = func.GetMethod.Invoke(V, new object[] { });
                    return oc != vc; // here i am trying to simply do ICollection.Count != ICollection.Count
                }
            }
            return O != null && !O.Equals(V);
        }
    }

}

更新:我解决了这个问题:

public bool HasChanged
{
    get { return return O != null && !O.Equals(V); }
}

为什么?因为如果这两个方法不同,我需要告诉我的Equals()方法已经完成了:)List<T>

4

1 回答 1

2

我假设你在SyncField<Entity>其他地方做。

SyncField<T>
{
    T O { get; private set; }
    T V { get; private set; }

    public bool HasChanged
    {
        get
        {
            if (V != null && O != null && O is ICollection)
            {
                return ((ICollection)O).Count != ((ICollection)V).Count;
            }
            else
            {
                return O != null && !O.Equals(V);
            }
        }
    }
}
于 2013-03-21T18:17:43.133 回答