1. ホーム
  2. c#

[解決済み] ユーザーフレンドリーな文字列を持つEnum ToString

2022-03-17 10:42:51

質問

私のenumは以下の値で構成されています。

private enum PublishStatusses{
    NotCompleted,
    Completed,
    Error
};

しかし、これらの値をユーザーフレンドリーな方法で出力できるようにしたいのです。
文字列から値に戻るのは勘弁してほしい。

どのように解決するのですか?

私は Description 属性は、System.ComponentModel 名前空間から取得できます。単に列挙型を装飾するだけです。

private enum PublishStatusValue
{
    [Description("Not Completed")]
    NotCompleted,
    Completed,
    Error
};

次に、このコードを使って取得します。

public static string GetDescription<T>(this T enumerationValue)
    where T : struct
{
    Type type = enumerationValue.GetType();
    if (!type.IsEnum)
    {
        throw new ArgumentException("EnumerationValue must be of Enum type", "enumerationValue");
    }

    //Tries to find a DescriptionAttribute for a potential friendly name
    //for the enum
    MemberInfo[] memberInfo = type.GetMember(enumerationValue.ToString());
    if (memberInfo != null && memberInfo.Length > 0)
    {
        object[] attrs = memberInfo[0].GetCustomAttributes(typeof(DescriptionAttribute), false);

        if (attrs != null && attrs.Length > 0)
        {
            //Pull out the description value
            return ((DescriptionAttribute)attrs[0]).Description;
        }
    }
    //If we have no description attribute, just return the ToString of the enum
    return enumerationValue.ToString();
}