确定派生自哪个通用类型对象

发布于 2024-11-09 01:01:59 字数 885 浏览 0 评论 0原文

我有以下类:

public abstract class CommandBase
{
... Stuff
}

public abstract class Command<TArgumentType>  
           : CommandBase where TArgumentType : class
{
    protected TArgumentType Argument { get; private set; }

    protected Command(TArgumentType argument)
    {
        Argument = argument;
    }
}

public abstract class Command<TArgumentType, TReturnType>  
           : Command<TArgumentType> where TArgumentType : class
{
    public TReturnType ReturnValue{ get; protected set; }

    protected Command(TArgumentType argument) : base(argument)
    {
    }
}

如何确定对象的类型是 CommandCommand?我不知道 TArgumentType 或 TReturnType 是什么具体类型。或者我应该做一个简单的尝试/捕获:

var returnValue = object.ReturnValue;

I have the following classes:

public abstract class CommandBase
{
... Stuff
}

public abstract class Command<TArgumentType>  
           : CommandBase where TArgumentType : class
{
    protected TArgumentType Argument { get; private set; }

    protected Command(TArgumentType argument)
    {
        Argument = argument;
    }
}

public abstract class Command<TArgumentType, TReturnType>  
           : Command<TArgumentType> where TArgumentType : class
{
    public TReturnType ReturnValue{ get; protected set; }

    protected Command(TArgumentType argument) : base(argument)
    {
    }
}

How do I determine if an object is of type Command<TArgumentType> or Command<TArgumentType, TReturnType>? I don't know what specific types TArgumentType or TReturnType are. Or should I just do a simple try/catch around:

var returnValue = object.ReturnValue;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一张白纸 2024-11-16 01:01:59

如果您在编译时不知道类型,则 foo.ReturnValue 甚至无法编译,除非它是 dynamic 类型。

可以使用这样的东西:

static bool ContainsGenericClassInHierarchy(object value,
                                            Type genericTypeDefinition)
{
    Type t = value.GetType();
    while (t != null)
    {
        if (t.IsGenericType
            && t.GetGenericTypeDefinition() == genericTypeDefinition)
        {
            return true;
        }
        t = t.BaseType;
    }
    return false;
}

像这样调用它:

// Single type parameter
bool x = ContainsGenericClassInHierarchy(foo, typeof(Command<>));
// Two type parameters
bool y = ContainsGenericClassInHierarchy(foo, typeof(Command<,>));

注意,这不会用于查找已实现的接口,这有点棘手。

If you don't know the type at compile-time, then foo.ReturnValue won't even compile, unless it's of type dynamic.

You can use something like this:

static bool ContainsGenericClassInHierarchy(object value,
                                            Type genericTypeDefinition)
{
    Type t = value.GetType();
    while (t != null)
    {
        if (t.IsGenericType
            && t.GetGenericTypeDefinition() == genericTypeDefinition)
        {
            return true;
        }
        t = t.BaseType;
    }
    return false;
}

Call it like this:

// Single type parameter
bool x = ContainsGenericClassInHierarchy(foo, typeof(Command<>));
// Two type parameters
bool y = ContainsGenericClassInHierarchy(foo, typeof(Command<,>));

Note that this won't work for finding implemented interfaces, which is somewhat trickier.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文