我有一个这样的字典集合(希望这是有道理的,在飞行中做了)
dim dic as new ienumerable(of dictionary(of integer, double))= _
{dictionary(of integer, double) = new { {1, 0.5}, {5, 0.75} } _
,dictionary(of integer, double) = new { {1, 0.3}, {4, 0.46} }}
我想得到一个dictionary
(使用linq)相同键的总和,像这样
dictionary(of integer, double) = { {1, 0.8}, {4, 0.46}, {5, 0.75} }
所以,换句话说,我想添加group
并keys
添加values
分组项目。
我可以用 a 轻松做到这一点,for loop
但我正在尝试学习 linq,并想用它来解决这个问题。谁能给我一些关于如何到达那里的提示?