我想转换
List<Tuple<IntPtr, string, string>>
到
Dictionary<IntPtr, Tuple<string,string>>
使用
ToDictionary
即
var T = new List<Tuple<IntPtr, string, string>>();
T.ToDictionary(/*I cannot figure out the right syntax*/);
我能找到的所有例子只有2个参数而我有3个。