------------------------------------------------------------------------------Person.cs
在土默特右旗等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供成都網(wǎng)站設(shè)計、成都做網(wǎng)站 網(wǎng)站設(shè)計制作按需網(wǎng)站策劃,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),成都品牌網(wǎng)站建設(shè),營銷型網(wǎng)站,成都外貿(mào)網(wǎng)站建設(shè)公司,土默特右旗網(wǎng)站建設(shè)費用合理。
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { public class Person { public string Country { get; private set; } public string Name { get; private set; } public int Age { get; private set; } public Person(string country, string name, int age) { this.Country = country; this.Name = name; this.Age = age; } } }
------------------------------------------------------------------------------主程序
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { //可以用于實現(xiàn)了IEnumerable的所有類 //一個鍵關(guān)聯(lián)多個值 List lp = new List (); lp.Add(new Person("中國", "張飛", 40)); lp.Add(new Person("中國", "關(guān)羽", 43)); lp.Add(new Person("中國", "劉備", 45)); lp.Add(new Person("中國", "諸葛亮", 24)); lp.Add(new Person("美國", "豪威爾", 40)); lp.Add(new Person("美國", "奧巴馬", 40)); lp.Add(new Person("朝鮮", "金三胖", 40)); lp.Add(new Person("印度", "印度阿三", 40)); //傳入一個Person對象,返回string var t = lp.ToLookup(r => r.Country);//鍵為Country(國家) foreach (Person item in t["中國"])//找到所有為中國的Person對象 { Console.WriteLine(item.Name); } Console.ReadKey(); } } }