本文介绍了获取基础/派生类型的枚举?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何获取枚举的基础/派生类型(字节,短整数,整数等)?
How can you get the underlying/derived Type(byte, short, int, etc) of an enum?
推荐答案
您正在寻找 Enum.GetUnderlyingType(enumType)
;
来自 MSDN :
static object GetAsUnderlyingType(Enum enval)
{
Type entype = enval.GetType();
Type undertype = Enum.GetUnderlyingType(entype);
return Convert.ChangeType(enval, undertype);
}
这篇关于获取基础/派生类型的枚举?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!