我有一本字典
Dictionary<string,int> infoDic
和一份清单
List<Info> infoList
Info 对象有 2 个属性:InfoText 和 InfoInt
我想检查 infoList 是否有任何 Info 对象,其中 Info.InfoText 等于 infoDic.Key,如果是,我想将 Info.InfoInt 实例化为 infoDic.Value
编辑
var test= from t in infoList
join x in infoDic
on t.InfoText equals x.Key
select new Info {InfoText =t.InfoText , InfoInt=x.Value }
有什么帮助吗?泰