1. ホーム
  2. c#

[解決済み] あるクラスがジェネリッククラスから派生しているかどうかをチェックする

2022-03-16 12:31:20

質問

私のプロジェクトには、派生クラスを持つジェネリッククラスがあります。

public class GenericClass<T> : GenericInterface<T>
{
}

public class Test : GenericClass<SomeType>
{
}

を調べる方法はありますか? Type オブジェクトは GenericClass ?

t.IsSubclassOf(typeof(GenericClass<>))

は動作しません。

解決方法は?

次のコードを試してみてください。

static bool IsSubclassOfRawGeneric(Type generic, Type toCheck) {
    while (toCheck != null && toCheck != typeof(object)) {
        var cur = toCheck.IsGenericType ? toCheck.GetGenericTypeDefinition() : toCheck;
        if (generic == cur) {
            return true;
        }
        toCheck = toCheck.BaseType;
    }
    return false;
}