var query = from x in dict1
join y in dict2 on x.Key equals y.Key
where x.Value != y.Value
select x.Key;
[/Quote]
我这的DictionaryEntry是 gridview的GridView1_RowUpdated事件产生的.NewValues与 .OldValues,貌似无法实现join呢
错误 1 找不到源类型“System.Collections.Specialized.IOrderedDictionary”的查询模式的实现。找不到“Join”。请考虑显式指定范围变量“x”的类型。 D:\MyProfiles\Documents\Visual Studio 2008\Projects\台账\台账\Default.aspx.cs 87 35 台账