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

LinQ转换运算符ToDictionary

时间:2014-07-14 08:03:48      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   art   cti   io   

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

namespace ToDictionaryDemo
{
    class Program
    {
        public class Game
        {
            public string Opponent { get; set; }
            public string Score { get; set; }
        }
        static void Main(string[] args)
        {
            var spartans = new List<Game>
            {
                new Game{Opponent="UAB",Score="55-18"},
                new Game{Opponent="Bowling Green",Score="55-18"},
                new Game{Opponent="Pittsburgh",Score="55-18"},
                new Game{Opponent="Notre Dame",Score="55-18"}
            };
            //字典是一种键值对的集合,ToDictionary 将一个IEnumerable<T>对象(比如LINQ查询所返回的结果)
            //转换为一个IDictionary<Key,Value>对象。
            IDictionary<string, Game> stats = spartans.ToDictionary(key => key.Opponent);
            Console.WriteLine("Spartans vs. {0} {1}", stats["Notre Dame"].Opponent, stats["Notre Dame"].Score);
            Console.ReadLine();
        }
    }
}

 

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

LinQ转换运算符ToDictionary

标签:style   blog   color   art   cti   io   

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

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