web-dev-qa-db-ja.com

C#の辞書の列挙

これをオンラインで検索しましたが、探している答えが見つかりません。

基本的に私は次の列挙型を持っています:

public enum typFoo : int
{
   itemA : 1,
   itemB : 2
   itemC : 3
}

この列挙型を辞書に変換して、次の辞書に格納するにはどうすればよいですか?

Dictionary<int,string> mydic = new Dictionary<int,string>();

Mydicは次のようになります。

1, itemA
2, itemB
3, itemC

何か案は?

52
daehaai

参照:C#で列挙型を列挙するにはどうすればよいですか?

foreach( typFoo foo in Enum.GetValues(typeof(typFoo)) )
{
    mydic.Add((int)foo, foo.ToString());
}
44
Zhais

試してください:

var dict = Enum.GetValues(typeof(typFoo))
               .Cast<typFoo>()
               .ToDictionary(t => (int)t, t => t.ToString() );
143
Ani

汎用メソッドとして使用できるように Aniの答え を適合させます(ありがとう、 toddmo ):

public static Dictionary<int, string> EnumDictionary<T>()
{
    if (!typeof(T).IsEnum)
        throw new ArgumentException("Type must be an enum");
    return Enum.GetValues(typeof(T))
        .Cast<T>()
        .ToDictionary(t => (int)(object)t, t => t.ToString());
}
13
Arithmomaniac
  • 拡張方法
  • 従来の命名
  • 一行
  • C#7は構文を返します(ただし、C#の古いレガシーバージョンでは角括弧を使用できます)
  • タイプがSystem.Enumでない場合、Enum.GetValuesのおかげでArgumentExceptionをスローします
  • IntelliSenseは構造体に制限されます(enum制約はまだ利用できません)
  • 必要に応じて、enumを使用して辞書にインデックスを付けることができます。
public static Dictionary<T, string> ToDictionary<T>() where T : struct
  => Enum.GetValues(typeof(T)).Cast<T>().ToDictionary(e => e, e => e.ToString());
5
toddmo

+1から Ani 。 VB.NETバージョンです

Aniの回答のVB.NETバージョンは次のとおりです。

Public Enum typFoo
    itemA = 1
    itemB = 2
    itemC = 3
End Enum

Sub example()

    Dim dict As Dictionary(Of Integer, String) = System.Enum.GetValues(GetType(typFoo)) _
                                                 .Cast(Of typFoo)() _
                                                 .ToDictionary(Function(t) Integer.Parse(t), Function(t) t.ToString())
    For Each i As KeyValuePair(Of Integer, String) In dict
        MsgBox(String.Format("Key: {0}, Value: {1}", i.Key, i.Value))
    Next

End Sub

追加の例

私の場合、重要なディレクトリのパスを保存して、_web.configファイルのAppSettingsセクション。次に、これらのAppSettingsのキーを表す列挙型を作成しました...しかし、フロントエンドエンジニアは外部JavaScriptファイルのこれらの場所にアクセスする必要がありました。そこで、次のコードブロックを作成し、プライマリマスターページに配置しました。これで、新しいEnumアイテムごとに、対応するJavaScript変数が自動作成されます。コードブロックを次に示します。

    <script type="text/javascript">
        var rootDirectory = '<%= ResolveUrl("~/")%>';
        // This next part will loop through the public enumeration of App_Directory and create a corresponding JavaScript variable that contains the directory URL from the web.config.
        <% Dim App_Directories As Dictionary(Of String, App_Directory) = System.Enum.GetValues(GetType(App_Directory)) _
                                                                   .Cast(Of App_Directory)() _
                                                                   .ToDictionary(Of String)(Function(dir) dir.ToString)%>
        <% For Each i As KeyValuePair(Of String, App_Directory) In App_Directories%>
            <% Response.Write(String.Format("var {0} = '{1}';", i.Key, ResolveUrl(ConfigurationManager.AppSettings(i.Value))))%>
        <% next i %>
    </script>

注:この例では、列挙型の名前をキーとして使用しました(int値ではありません)。

3
Lopsided

列挙記述子を列挙できます:

Dictionary<int, string> enumDictionary = new Dictionary<int, string>();

foreach(var name in Enum.GetNames(typeof(typFoo))
{
    enumDictionary.Add((int)((typFoo)Enum.Parse(typeof(typFoo)), name), name);
}

これにより、各項目の値と名前が辞書に入れられます。

3
Tejs

Arithmomaniacの例 に基づいた別の拡張メソッド:

    /// <summary>
    /// Returns a Dictionary&lt;int, string&gt; of the parent enumeration. Note that the extension method must
    /// be called with one of the enumeration values, it does not matter which one is used.
    /// Sample call: var myDictionary = StringComparison.Ordinal.ToDictionary().
    /// </summary>
    /// <param name="enumValue">An enumeration value (e.g. StringComparison.Ordianal).</param>
    /// <returns>Dictionary with Key = enumeration numbers and Value = associated text.</returns>
    public static Dictionary<int, string> ToDictionary(this Enum enumValue)
    {
        var enumType = enumValue.GetType();
        return Enum.GetValues(enumType)
            .Cast<Enum>()
            .ToDictionary(t => (int)(object)t, t => t.ToString());
    }
3
j2associates

つかいます:

public static class EnumHelper
{
    public static IDictionary<int, string> ConvertToDictionary<T>() where T : struct
    {
        var dictionary = new Dictionary<int, string>();

        var values = Enum.GetValues(typeof(T));

        foreach (var value in values)
        {
            int key = (int) value;

            dictionary.Add(key, value.ToString());
        }

        return dictionary;
    }
}

使用法:

public enum typFoo : int
{
   itemA = 1,
   itemB = 2,
   itemC = 3
}

var mydic = EnumHelper.ConvertToDictionary<typFoo>();
2
Arif

反射を使用する:

Dictionary<int,string> mydic = new Dictionary<int,string>();

foreach (FieldInfo fi in typeof(typFoo).GetFields(BindingFlags.Public | BindingFlags.Static))
{
    mydic.Add(fi.GetRawConstantValue(), fi.Name);
}
1
Cipi

名前だけが必要な場合は、その辞書を作成する必要はありません。

これにより、enumがintに変換されます。

 int pos = (int)typFoo.itemA;

これはintをenumに変換します:

  typFoo foo = (typFoo) 1;

そして、これはあなたにそれの名前を再実行します:

 ((typFoo) i).toString();
public class EnumUtility
    {
        public static string GetDisplayText<T>(T enumMember)
            where T : struct, IConvertible
        {
            if (!typeof(T).IsEnum)
                throw new Exception("Requires enum only");

            var a = enumMember
                    .GetType()
                    .GetField(enumMember.ToString())
                    .GetCustomAttribute<DisplayTextAttribute>();
            return a == null ? enumMember.ToString() : a.Text;
        }

        public static Dictionary<int, string> ParseToDictionary<T>()
            where T : struct, IConvertible
        {
            if (!typeof(T).IsEnum)
                throw new Exception("Requires enum only");

            Dictionary<int, string> dict = new Dictionary<int, string>();
            T _enum = default(T);
            foreach(var f in _enum.GetType().GetFields())
            {
               if(f.GetCustomAttribute<DisplayTextAttribute>() is DisplayTextAttribute i)
                    dict.Add((int)f.GetValue(_enum), i == null ? f.ToString() : i.Text);
            }
            return dict;
        }

        public static List<(int Value, string DisplayText)> ParseToTupleList<T>()
            where T : struct, IConvertible
        {
            if (!typeof(T).IsEnum)
                throw new Exception("Requires enum only");

            List<(int, string)> tupleList = new List<(int, string)>();
            T _enum = default(T);
            foreach (var f in _enum.GetType().GetFields())
            {
                if (f.GetCustomAttribute<DisplayTextAttribute>() is DisplayTextAttribute i)
                    tupleList.Add(((int)f.GetValue(_enum), i == null ? f.ToString() : i.Text));
            }
            return tupleList;
        }
    }
0
Swaraj Ketan