Get all keys in Dictionary containing value x

后端 未结 2 1280
花落未央
花落未央 2021-02-12 22:38

I have this:

Dictionary dict = new Dictionary();

I want to select all the items in the dictionary

2条回答
  •  一向
    一向 (楼主)
    2021-02-12 23:24

    Well it's reasonably simple with LINQ:

    var matches = dict.Where(pair => pair.Value == "abc")
                      .Select(pair => pair.Key);
    

    Note that this won't be even slightly efficient - it's an O(N) operation, as it needs to check every entry.

    If you need to do this frequently, you may want to consider using another data structure - Dictionary<,> is specifically designed for fast lookups by key.

提交回复
热议问题