首页 > 代码库 > LinQ转换运算符ToDictionary
LinQ转换运算符ToDictionary
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(); } }}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。