将字典转换为元组列表

Esp*_*oce -1 .net c# linq

如何以最短的方式将字典转换为元组列表(C#)?

Dictionary<long,int> myDico = new Dictionary<long,int>();
IList<Tuple<long, int>> applyOnTree = myDico.Something();
Run Code Online (Sandbox Code Playgroud)

Car*_*rra 7

像这样的东西?

var list = myDico.Select(x => new Tuple<long, int>(x.Key, x.Value)).ToList();
Run Code Online (Sandbox Code Playgroud)