csharp 将枚举元素转换为字符串

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 将枚举元素转换为字符串相关的知识,希望对你有一定的参考价值。

public class EnumItemMap
{
    /*
     * Given an enum, construct a map where the keys are the enum items
     * and the values are string descriptions of each item. Example:
     *
     * {TheFirst, "The First"},
     * {TheSecond, "The Second"},
     * {AndTheLast, "And The Last"},
     *
     * Thus each enum item is converted to text and split at each capital letter.
     */
    public static Dictionary<T, string> Build<T>() where T : struct, IConvertible
    {
        if (!typeof(T).IsEnum)
        {
            throw new ArgumentException
              ("Error: EnumItemMap.Build<T>() => T must be an enumerated type");
        }

        Dictionary<T, string> map = new Dictionary<T, string>();
        var values = Enum.GetValues(typeof(T));
        foreach (var item in values)
        {
            var r = new System.Text.RegularExpressions.Regex(
                @"(?<=[^A-Z])(?=[A-Z]) | (?=[A-Z][^A-Z])",
                System.Text.RegularExpressions.RegexOptions.IgnorePatternWhitespace);

            map[(T)item] = r.Replace(item.ToString(), " ");
        }
        return map;
    }
}

以上是关于csharp 将枚举元素转换为字符串的主要内容,如果未能解决你的问题,请参考以下文章

C语言基础:enum 枚举类型(定义遍历枚举元素枚举在 switch 中的使用将整数转换为枚举)

c#下可否将一个枚举类型的数组转换为一个整型数组

csharp 将字符串“1”和“0”转换为bool值

csharp 如何将组合框的选定项目转换为字符串变量

使用泛型和简单地将字符串值转换为枚举时将字符串值转换为枚举时的混淆

JOOQ 使用转换器将字符串转换为枚举