我正在尝试建立一个将提供单一工厂方法的工厂。
在这种方法中,我想验证传入的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;
    }

最佳答案

使用:

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


代替:

if (i_FeatureType is T)

07-27 13:47