您好,登錄后才能下訂單哦!
------------------------------------------------------------------------------Person.cs
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) { //可以用于實現了IEnumerable<T>的所有類 //一個鍵關聯多個值 List<Person> lp = new List<Person>(); lp.Add(new Person("中國", "張飛", 40)); lp.Add(new Person("中國", "關羽", 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(); } } }
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。