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
What do you think of this ?
var values = idList.Keys.Select(i => lookupList[i]);