gpt4 book ai didi

c# - 检查枚举类型是否为 ulong

转载 作者:行者123 更新时间:2023-11-30 13:47:55 25 4
gpt4 key购买 nike

我有一个枚举,我想检查枚举类型是否为 ulong。

到目前为止尝试过:

 var checkValue = Enum.GetUnderlyingType(param.ParamType); // param is enum
if (checkValue is ulong){ } // doesn't work

var checkValue = param.value;
if (checkValue is ulong){ } // doesn't work

有什么想法吗?

最佳答案

Enum.GetUnderlyingType返回类型为 Type 的对象,所以它确实不是 ulong,它是 ulong 类型本身:)

试试这个:

if (checkValue == typeof(ulong))

关于c# - 检查枚举类型是否为 ulong,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14864934/

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