convert list of tuples to dictionary c#

77

convert list of tuples to dictionary c# -

IList<Tuple<long, int>> applyOnTree;
applyOnTree.ToDictionary(x => x.Item1, x => x.Item2);

Comments

Submit
0 Comments