首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

怎么遍历dictionary<enum,class>输出

2012-06-13 
求助如何遍历dictionaryenum,class输出?我调用接口返回DictionaryDeviceModel, ListSoftwareInfo其

求助 如何遍历dictionary<enum,class>输出?
我调用接口返回 Dictionary<DeviceModel, List<SoftwareInfo>> 
其中DeviceModel为enum枚举类型,SoftwareInfo为每一种设备类型对应的软件详细信息,就是一个class 请问 我该如何遍历每种DeviceModel 然后把相对应的信息输出?

[解决办法]

C# code
foreach(KeyValuePair<DeviceModel, List<SoftwareInfo>> item in dic){//item.Key对应DeviceModel//item.Value对应List<SoftwareInfo>}//Linqdic.ToList().ForEach(x=>{//x.Key对应DeviceModel//x.Value对应List<SoftwareInfo>}) 

热点排行