C# – 你能用数值调用枚举吗?

前端之家收集整理的这篇文章主要介绍了C# – 你能用数值调用枚举吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Cast int to enum in C#21个
如果我有这个代码
//Spice Enums
enum SpiceLevels {None = 0,Mild = 1,Moderate = 2,FerocIoUs = 3};

其中陈述了枚举名称数量,如何从变量中调用枚举,如果变量是3,我如何调用它并显示凶猛?

解决方法

只需将整数转换为枚举:
SpiceLevels level = (SpiceLevels) 3;

当然,另一种方式也有效:

int number = (int) SpiceLevels.FerocIoUs;

另见MSDN

Every enumeration type has an underlying type,which can be any integral type except char. The default underlying type of enumeration elements is int.

However,an explicit cast is necessary to convert from enum type to an integral type

原文链接:https://www.f2er.com/csharp/244760.html

猜你在找的C#相关文章