Get all keys in Dictionary containing value x

后端 未结 2 1282
花落未央
花落未央 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:19

    Built-in function? No sorry... but another (not so beautiful) way is to iterate using foreach(KeyValuePair ...

提交回复
热议问题