首页 > 其他 > 详细

LinQ转换运算符ToDictionary

时间:2014-07-14 08:03:31      阅读:462      评论:0      收藏:0      [点我收藏+]
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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!