Join two dictionaries using a common key

前端 未结 4 993
广开言路
广开言路 2021-02-09 23:28

I am trying to join two Dictionary collections together based on a common lookup value.

var idList = new Dictionary();
idList.Add(1, 1);
idList.A         


        
4条回答
  •  抹茶落季
    2021-02-09 23:59

    What do you think of this ?

    var values = idList.Keys.Select(i => lookupList[i]);
    

提交回复
热议问题