gpt4 book ai didi

c# - 如何使用包含空格的枚举项目名称?

转载 作者:行者123 更新时间:2023-12-03 23:15:19 26 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How to get C# Enum description from value? [duplicate]

(5 个回答)


6年前关闭。




如何使用包含空格的枚举项目名称?

enum Coolness
{
Not So Cool = 1,
VeryCool = 2,
Supercool = 3
}

我通过以下代码获取 Enum 项目名称
string enumText = ((Coolness)1).ToString()

我不会更改此代码,但上面的代码应该返回 Not So Cool。
有没有使用 oops 概念来实现这一点?
在这里,我不想更改检索语句。

最佳答案

使用Display attributes :

enum Coolness : byte
{
[Display(Name = "Not So Cool")]
NotSoCool = 1,
VeryCool = 2,
Supercool = 3
}

您可以使用此助手获取 DisplayName
public static string GetDisplayValue(T value)
{
var fieldInfo = value.GetType().GetField(value.ToString());

var descriptionAttributes = fieldInfo.GetCustomAttributes(
typeof(DisplayAttribute), false) as DisplayAttribute[];

if (descriptionAttributes == null) return string.Empty;
return (descriptionAttributes.Length > 0) ? descriptionAttributes[0].Name : value.ToString();
}

(归功于 Hrvoje Stanisic 的助手)

关于c# - 如何使用包含空格的枚举项目名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33101825/

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