1

我正在尝试建立一个提供单一工厂方法的工厂。在这个方法中我想验证传入的 Type 是否是工厂的 T。

我所写的根本行不通。我相信我理解它失败的原因,但我不确定如何正确地形成我的铸件。

下面是我的代码。关于如何形成这种条件/铸造的任何想法?

    public T GetFeature(Type i_FeatureType, User i_UserContext)
    {
        T typeToGet = null;

        if (i_FeatureType is T) // <--condition fails here
        {
            if (m_FeaturesCollection.TryGetValue(i_FeatureType, out typeToGet))
            {
                typeToGet.LoggenInUser = i_UserContext;
            }
            else
            {
                addTypeToCollection(i_FeatureType as T, i_UserContext);
                m_FeaturesCollection.TryGetValue(typeof(T), out typeToGet);
                typeToGet.LoggenInUser = i_UserContext;
            }
        }

        return typeToGet;
    }
4

2 回答 2

4

利用:

 if (typeof(T).IsAssignableFrom(i_FeatureType))

代替:

if (i_FeatureType is T)
于 2012-08-21T10:45:29.370 回答
0

您正在将您的对象与“类型”对象进行比较。

所以,而不是

如果(i_FeatureType 为 T)

尝试

if (i_FeatureType == typeof(T))

于 2012-08-21T10:49:03.193 回答