比较没有实例的类类型

时间:2013-08-06 08:13:07

标签: c# .net exception generics types

我有一个'factory'类,它应该比较泛型类类型参数并返回一个对象的特定实例:

public static class MyExceptionFactory<T> where T: System.Exception {
    public static MyReturnObj Create() {
        // return instance of MyReturnObj based on type of T
    }
}

但我无法检查是否T是ArgumentNullException,因为T是类型参数而不是变量

if(T is ArgumentNullException) // won't work

..而且,我无法检查T的类型

if(typeof(T) is ArgumentNullException)

因为IntelliSense告诉我T从不System.ArgumentNullException(我假设因为T是System.Exception

我怎么能解决这个问题?我是否必须传递System.Exception的实例来检查它的类型,还是有其他方法通过类类型参数来完成它?

3 个答案:

答案 0 :(得分:7)

您有两个类型标识符,您只需要比较类型。

if(typeof(T) == typeof(ArgumentNullException))
{
   ...
}

答案 1 :(得分:3)

如果应该遵守继承的类型,请使用:

if(typeof(ArgumentNullException).IsAssignableFrom(typeof(T)))
{
...
}

答案 2 :(得分:2)

if (typeof(T) == typeof(ArgumentNullException))
{
    //your code
}