委托的匿名方法
Posted myblogou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了委托的匿名方法相关的知识,希望对你有一定的参考价值。
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 }
以上是关于委托的匿名方法的主要内容,如果未能解决你的问题,请参考以下文章