我正在使用字典来收集一些信息。收集详细信息后,我需要使用 var 变量根据键对字典值进行排序。之后,我需要将排序后的 var 变量插入到新字典中。在这里,我无法将排序后的数据插入字典。
我在这里发布我的代码:
var orderDic = from dic in dictionaryColl
orderby dic.Key ascending
select dic;
Dictionary<int, string> newDic = new Dictionary<int, string>();
newDic =(Dictionary<int,string>)orderDic; // Here i'm not able to assign data to dictionary
提前致谢..