gpt4 book ai didi

c# - 使用反射设置枚举

转载 作者:太空狗 更新时间:2023-10-29 23:02:30 25 4
gpt4 key购买 nike

如何使用反射设置枚举,

我的类(class)有枚举:

public enum LevelEnum
{
NONE,
CRF,
SRS,
HLD,
CDD,
CRS
};

在运行时,我想将该枚举设置为 CDD for ex。

我该怎么做?

最佳答案

尝试使用 Enum 类

LevelEnum s = (LevelEnum)Enum.Parse(typeof(LevelEnum), "CDD");

关于c# - 使用反射设置枚举,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7009958/

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