Linq排序并声称新对象列表示例

 
// 这个表是决定排序顺序的表
            List<KeyValuePair<int, string>> sortedList = new List<KeyValuePair<int, string>>();
            // 这个表是将要被排序的表,这张表的关联是: 本表的Key=上表的Value
            List<KeyValuePair<string, string>> desList = new List<KeyValuePair<string, string>>();

            sortedList.Add(new KeyValuePair<int, string>(5, "Item5"));
            sortedList.Add(new KeyValuePair<int, string>(10, "Item1"));
            sortedList.Add(new KeyValuePair<int, string>(2, "Item2"));
            sortedList.Add(new KeyValuePair<int, string>(7, "Item3"));
            sortedList.Add(new KeyValuePair<int, string>(4, "Item4"));
            
            //

            desList.Add(new KeyValuePair<string, string>("Item1", "Content1"));
            desList.Add(new KeyValuePair<string, string>("Item3", "Content3"));
            desList.Add(new KeyValuePair<string, string>("Item4", "Content4"));
            desList.Add(new KeyValuePair<string, string>("Item2", "Content2"));
            desList.Add(new KeyValuePair<string, string>("Item5", "Content5"));


            var query = ((from k in sortedList
                          join p in desList on k.Value equals p.Key
                          select new { k.Key, p.Value, internalValue = p.Key })
                          .OrderBy(k => k.Key) // 排序
                          .Select(n=> new KeyValuePair<string ,string>(n.internalValue,n.Value))).ToList(); //再次生成跟原来类型一样的LIST

            for (int i = 0; i < query.Count; i++)
            {
                Console.WriteLine(string.Format("Key={0},Value={1}", query[i].Key, query[i].Value));
            }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值