C#List.Find方法 – 如何将值传递给谓词?

前端之家收集整理的这篇文章主要介绍了C#List.Find方法 – 如何将值传递给谓词?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我无法弄清楚如何根据我在运行时传入的值使用List上的“查找”.如果您看到我的下面的代码,我希望能够在List中找到它的Path参数等于X的CustomClass,其中X将在运行时定义.

任何想法如何在列表上进行这样的查找?或者,如果没有编写迭代器并手动执行查找,这是不可能的?在这种情况下,或许有一个关键的集合我应该用来代替?

private List<CustomClass> files;

   public void someMethod()
  {
       Uri u= new Uri(www.test.com);
       CustomClass cc = this.files.find( matchesUri(u) );  // WON'T LET ME DO THIS
  }

   private static bool matchesUri(List<CustomClass> cc,Uri _u)
    {
        return cc.Path == _u;           }


public class CustomClass
{
    private Uri path;

    public Uri Path
    {
        get { return this.path; }
        set { this.path = value; }
    }
}

PS.我必须承认我在http://msdn.microsoft.com/en-us/library/x0b5b5bc.aspx的doco中并没有完全遵循谓词

解决方法

使用lambda:
Uri u = new Uri("www.test.com");
 CustomClass cc = this.files.Find(cc => cc.Path == u);

或者如果您仍想要一个命名方法

static bool matchesUri(CustomClass cc,Uri _u)
{
    return cc.Path == _u;
}

 Uri u = new Uri("www.test.com");
 CustomClass cc = this.files.Find(cc => matchesUri(cc,u));
原文链接:https://www.f2er.com/c/120111.html

猜你在找的C&C++相关文章