您好,登錄后才能下訂單哦!
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication3 { class Program { static void Main(string[] args) { //迭代在查詢定義的時候不會進行,而是在執(zhí)行每個foreach語句時執(zhí)行 //每次迭代中使用查詢時,都會調(diào)用擴展方法 List<string> strs = new List<string> { "關(guān)羽", "張飛", "馬超", "黃忠", "趙云" }; var query = from r in strs where r.StartsWith("張")//查找集合中元素匹配第一個的元素 orderby r select r; Foreach(query);//輸出:張飛 strs.Add("張昭"); strs.Add("張合"); strs.Add("張遼"); strs.Add("曹操"); Foreach(query);//輸出:張飛,張合,張遼,張昭 Console.ReadKey(); //==========================================兩次輸出不變(值添加到集合里面去了) List<string> strs2 = new List<string> { "關(guān)羽", "張飛", "馬超", "黃忠", "趙云" }; var query2 = (from r in strs2 where r.StartsWith("張")//查找集合中元素匹配第一個的元素 orderby r select r).ToList();//ToArray() ToEnumerable() Foreach(query2);//輸出:張飛 strs2.Add("張昭"); strs2.Add("張合"); strs2.Add("張遼"); strs2.Add("曹操"); Foreach(query2);//輸出:張飛 Console.ReadKey(); } static void Foreach(IEnumerable<string> s) { foreach (string item in s) { Console.WriteLine(item); } Console.WriteLine("========================="); } } }
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。