list.Exists()

作者:追风剑情 发布于:2014-6-18 22:17 分类:C#

  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace ConsoleApplication1
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. List<int> list = new List<int>();
  11. for (int i = 0; i < 20; i++)
  12. list.Add(i);
  13.  
  14. if (list.Exists(ExistsMatch))
  15. Console.WriteLine("找到匹配项");
  16. else
  17. Console.WriteLine("未找到匹配项");
  18.  
  19. Console.ReadKey();
  20. }
  21.  
  22. static bool ExistsMatch(int p)
  23. {
  24. return p == 19;
  25. }
  26. }
  27. }

标签: Exists

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号