码迷,mamicode.com
首页 > 其他好文 > 详细

LinQ转换运算符ToLookup

时间:2014-07-14 00:33:57      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   for   cti   

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ToLookupDemo
{
    class Program
    {
        //自定义类
        public class Product
        {
            public string Code { get; set; }
            public string Description { get; set; }
        }
        static void Main(string[] args)
        {
            List<Product> products = new List<Product>
            {
                new Product{Code="SPM1",Description="1"},
                new Product{Code="LME1",Description="3"},
                new Product{Code="SUP1",Description="4"},
                new Product{Code="SPM2",Description="2"},
                new Product{Code="SUP2",Description="5"}
            };
            //转换为Lookup类型,得到的结果已经分组了
            Lookup<string, string> lookup = (Lookup<string, string>)
                products.ToLookup(c => c.Code.Substring(0, 3), c => c.Code + " " + c.Description);
            //在结果中循环
            foreach (IGrouping<string, string> group in lookup)
            {
                Console.WriteLine(group.Key);
                foreach (string s in group)
                    Console.WriteLine("   {0}", s);
            }
            Console.ReadLine();
            //取得其中一组值
            IEnumerable<string> spmGroup = lookup["SPM"];
            foreach (var str in spmGroup)
                Console.WriteLine(str);
            Console.ReadLine();
        }
    }
}

 

LinQ转换运算符ToLookup,布布扣,bubuko.com

LinQ转换运算符ToLookup

标签:des   style   blog   color   for   cti   

原文地址:http://www.cnblogs.com/swtool/p/3840291.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!