从ICollection获取值(value)的最佳方法是什么?
我们知道Collection除此以外是空的。

最佳答案

Linq,宝贝,是的...

   var foo = myICollection.OfType<YourType>().FirstOrDefault();
    // or use a query
    var bar = (from x in myICollection.OfType<YourType>() where x.SomeProperty == someValue select x)
       .FirstOrDefault();

关于c# - ICollection-获得单一值(value),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/363326/

10-10 22:15