如果我有这个代码
//Spice Enums enum SpiceLevels {None = 0 , Mild = 1, Moderate = 2, Ferocious = 3};
其中陈述了枚举名称+他们的号码,如何从变量中调用枚举,如果变量是3,如何调用它并显示凶猛?
3
c#
c# ×1