c# – 如何将非可空类型转换为可空类型?

是否可以将仅在运行时知道的非可空值类型转换为可空?换一种说法:

public Type GetNullableType(Type t)
{
    if (t.IsValueType)
    {
        return typeof(Nullable<t>);
    }
    else
    {
        throw new ArgumentException();
    }
}

显然返回线会出错.有没有办法做到这一点? Type.MakeGenericType方法看起来很有希望,但我不知道如何获得表示Nullable< T>的未指定的泛型Type对象.有任何想法吗?

解决方法:

你想要typeof(Nullable<>).MakeGenericType(t)

注意:Nullable<>没有任何提供的参数是未绑定的泛型类型;对于更复杂的示例,您可以添加逗号以适应 – 即KeyValuePair<,>,Tuple< ,,,>等等

上一篇:c# – 可空值的类型只是常规值类型的包装吗?


下一篇:c# – 如何将Nullable DateTime变量的null值转换为DbNull.Value