gpt4 book ai didi

c# - 如何返回与给定字符串匹配的枚举值?

转载 作者:行者123 更新时间:2023-11-30 18:58:58 24 4
gpt4 key购买 nike

所以我有一个字符串,我想从枚举中获取一个值以返回与字符串同名的值。示例:

enum Types{
one,
two,
three
}

private Types getType(string value){ //Let's say value is "two"
return Types.value; //This should return the enum "two" of Types
}

我希望我说得够清楚了!

最佳答案

使用 Enum.Parse

var t = (Types)Enum.Parse(typeof(Types), "two");

关于c# - 如何返回与给定字符串匹配的枚举值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16800946/

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