私はそのような辞書のコレクションを持っています(これが理にかなっているといいのですが、その場で行いました)
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 を学習しようとしており、代わりにそれを使用して理解したいと考えています。そこにたどり着くまでのヒントを誰か教えてくれませんか?