gpt4 book ai didi

c# - 获取底层/派生类型的枚举?

转载 作者:可可西里 更新时间:2023-11-01 08:04:55 32 4
gpt4 key购买 nike

如何获取枚举的底层/派生类型(byte、short、int 等)?

最佳答案

您正在寻找Enum.GetUnderlyingType(enumType);

样本来自 MSDN :

static object GetAsUnderlyingType(Enum enval)
{
Type entype = enval.GetType();

Type undertype = Enum.GetUnderlyingType(entype);

return Convert.ChangeType(enval, undertype);
}

关于c# - 获取底层/派生类型的枚举?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5305627/

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