码迷,mamicode.com
首页 > 其他好文 > 详细

linq延迟状态的执行

时间:2020-07-19 11:32:54      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:names   ring   color   each   rom   adk   col   linq   class   

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 using System.Threading.Tasks;
 6 
 7 namespace linq延迟状态终止
 8 {
 9     class Program
10     {
11         static void Main(string[] args)
12         {
13             List<string> arr = new List<string>() { "abc", "bcd", "efg" };
14             var linq = (from r in arr where r.StartsWith("b") select r);
15             Console.WriteLine("one");
16             foreach (string t in linq)
17             {
18                 Console.WriteLine(t);
19             }
20             arr.AddRange(new string[] { "bbb","b2"});
21             Console.WriteLine("two");
22             foreach (string t in linq)
23             {
24                 Console.WriteLine(t);
25             }
26             Console.ReadKey();
27         }
28     }
29 }

 

linq延迟状态的执行

标签:names   ring   color   each   rom   adk   col   linq   class   

原文地址:https://www.cnblogs.com/lceihen/p/13338849.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!