日期:2014-05-17 浏览次数:20441 次
foreach(KeyValuePair<DeviceModel, List<SoftwareInfo>> item in dic) { //item.Key对应DeviceModel //item.Value对应List<SoftwareInfo> } //Linq dic.ToList().ForEach(x=>{ //x.Key对应DeviceModel //x.Value对应List<SoftwareInfo> })