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

委托的匿名方法

时间:2018-11-10 16:50:18      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:匿名方法   static   return   OLE   ret   find   list   ring   res   

 1     class Program
 2     {
 3         static void Main(string[] args)
 4         {
 5             List<string> list = new List<string>() { "abf", "cde", "def" };
 6             List<string> resultList = list.FindAll(
 7                     delegate(string s)
 8                     {
 9                         return s.IndexOf(f) >= 0;
10                     }
11             );
12             string[] resulStrings = resultList.ToArray();
13             foreach (var s in resulStrings)
14             {
15                 Console.WriteLine(s);
16             }
17 
18         }
19        
20     }

 

委托的匿名方法

标签:匿名方法   static   return   OLE   ret   find   list   ring   res   

原文地址:https://www.cnblogs.com/myBlogOu/p/9939607.html

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