Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
タプルのリストを辞書(C#)に最短の方法で変換する方法は?
IList<Tuple<long, int>> applyOnTree = getTuples();
longがキーであり、intが値であると仮定します。
long
int
applyOnTree.ToDictionary(x => x.Item1, x => x.Item2);
明らかに、逆の場合は、これら2つを逆にします。
ToDictionary拡張メソッドを使用します。
ToDictionary
var dictionary = applyOnTree.ToDictionary(l => l.Item1, l => l.Item2);