gpt4 book ai didi

.NET:如何判断类型是否可为空?

转载 作者:行者123 更新时间:2023-12-02 17:34:17 27 4
gpt4 key购买 nike

Possible Duplicate:
How to check if an object is nullable?

我有一个 System.Type 对象,它可能是 Nullable<T> 。我如何在运行时确定这一点?

注意:此时我并不关心 T 是什么,我只需要知道它是否为 Nullable。

最佳答案

可能的重复:

How to check if an object is nullable?

如果没有..

bool IsNullableType(Type theType)
{
return (theType.IsGenericType &&
theType.GetGenericTypeDefinition().Equals(typeof(Nullable<>)));
}

关于.NET:如何判断类型是否可为空?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4427090/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com