在 C# 中将枚举转换为字符串
本教程将讨论在 C# 中将枚举转换为字符串的方法。
在 C# 中用 Description
属性将枚举转换为字符串
对于遵循命名约定的简单 Enum 值,我们无需使用任何方法即可将其转换为字符串。可以使用 C# 中的 Console.WriteLine()
函数向用户显示。在下面的编码示例中进行了说明。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace enum_to_string {
public enum Status { InProgress, Completed }
class Program {
static void Main(string[] args) {
Status complete = Status.Completed;
Console.WriteLine(complete);
}
}
}
输出:
Completed
在上面的代码中,我们直接以 C# 的字符串格式打印 Enum 值 Completed
。这是可能的,因为我们的 Enum 值遵循 C# 中的变量命名约定。但是,如果要显示易于阅读的字符串,则必须在 C# 中使用 Enums 的 Description
属性。Description
属性用于描述枚举的每个值。我们可以通过在 Enum 的 Description
属性中编写字符串,将 Enum 转换为易于阅读的字符串。以下代码示例向我们展示了如何使用 C# 中的 Description
属性将 Enum 值转换为字符串。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Reflection;
namespace enum_to_string {
public enum Status {
[Description("The Desired Task is InProgress")] InProgress,
[Description("The Desired Task is Successfully Completed")] Completed
}
static class extensionClass {
public static string getDescription(this Enum e) {
Type eType = e.GetType();
string eName = Enum.GetName(eType, e);
if (eName != null) {
FieldInfo fieldInfo = eType.GetField(eName);
if (fieldInfo != null) {
DescriptionAttribute descriptionAttribute = Attribute.GetCustomAttribute(
fieldInfo, typeof(DescriptionAttribute)) as DescriptionAttribute;
if (descriptionAttribute != null) {
return descriptionAttribute.Description;
}
}
}
return null;
}
}
class Program {
static void Main(string[] args) {
Status complete = Status.Completed;
string description = complete.getDescription();
Console.WriteLine(description);
}
}
}
输出:
The Desired Task is Successfully Completed
在上面的代码中,我们创建了一个扩展方法 getDescription
,该方法返回 C# 中的 Enum 值描述。该方法可以很好地工作,但是有点复杂。这种复杂性在下一节中得到了简化。
用 C# 中的 switch
语句将 Enum 转为字符串
通过使用 C# 中的 switch
语句,可以简化以前方法的许多复杂性。我们可以使用 C# 中的 switch
语句,为每个 Enum 值的字符串变量分配所需的值。请参见以下代码示例。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Reflection;
namespace enum_to_string {
public enum Status { InProgress, Completed }
static class extensionClass {
public static string getValue(this Status e) {
switch (e) {
case Status.InProgress:
return "The Desired Task is InProgress";
case Status.Completed:
return "The Desired Task is Successfully Completed";
}
return String.Empty;
}
}
class Program {
static void Main(string[] args) {
Status complete = Status.Completed;
string value = complete.getValue();
Console.WriteLine(value);
}
}
}
输出:
The Desired Task is Successfully Completed
在上面的代码中,我们创建了一个扩展方法 getValue()
,该方法使用 C# 中的 switch
语句返回基于 Enum 值的字符串。getValue()
函数使用 switch
语句,并为我们指定的 Enum 的每个值返回不同的字符串。
相关文章
从 C# 中的字符串中删除字符
发布时间:2024/01/16 浏览次数:74 分类:编程语言
-
有 4 种主要方法可用于从 C# 中的字符串,string.Replace()函数,string.Join()和 string.Split()函数,Regex.Replace()函数以及 Linq 方法。
在 C# 中重复字符串 X 次
发布时间:2024/01/16 浏览次数:173 分类:编程语言
-
在 C# 中,可以使用三种主要方法将字符串重复 x 次:字符串类构造函数,StringBuilder 类和 LINQ 方法。用 C# 中的 string 类构造函数重复执行 X 次字符串
在 C# 中重复字符串
发布时间:2024/01/16 浏览次数:140 分类:编程语言
-
可使用三种主要方法在 C# 中重复字符串,String 构造函数,LINQ 中的 Enumerable.Repeat()函数以及 StringBuilder 类。
在 C# 中向数组中添加字符串
发布时间:2024/01/16 浏览次数:168 分类:编程语言
-
没有内置方法可以将新元素动态添加到 C# 中完全填充的数组中。使用 C# 中的 List.Add() 方法将字符串添加到数组
在 C# 中截断字符串
发布时间:2024/01/16 浏览次数:66 分类:编程语言
-
我们可以使用 C# 中的 String.Substring()方法创建一个字符串的截断副本。在 C# 中使用 String.Substring() 方法截断字符串
在 C# 中将字符串格式设置为货币格式
发布时间:2024/01/16 浏览次数:156 分类:编程语言
-
在 C# 中,可以使用两种主要方法将字符串格式化为货币格式,即 String.Format()和 ToString()函数。在 C# 中使用 String.Format() 方法将字符串格式化为货币
在 C# 中将字符串拆分为列表
发布时间:2024/01/16 浏览次数:122 分类:编程语言
-
我们可以使用 string.Split()函数和 C# 中的 Linq 的 ToList()函数,将可变的字符串转换为字符串列表。在 C# 中使用 String.Split() 方法将字符串变量拆分为字符串列表
在 C# 中检查一个字符串是否为空或 null
发布时间:2024/01/16 浏览次数:132 分类:编程语言
-
string.IsNullOrEmpty()方法用于检查字符串在 C# 中是否为 null 或 string.Empty 值。检查 C# 中的字符串是空或者 null 如果我们要检查其中包含 null 值或""值的字符串,可以在 C# 中使用 string.IsNullOrEmpty() 方