I would like to call FindLast on a collection which implements IEnumarable, but FindLast is only available for List. What is the best solution?
|
|
|||
|
|
|
The equivalent to:
is
(The latter will have to check all items in the sequence, however...) Effectively the "Where()" is the Find part, and the "Last()" is the Last part of "FindLast" respectively. Similarly, |
||||||
|
|
|
How about with LINQ-to-Objects:
If you only have C# 2, you can use a utility method instead:
|
||||||||
|
|
|
you can add you collection to a new List by passing it to List<> constructor.
|
||
|
|
|
|
Use the extension method Last() which is located in the namespace System.Linq. |
||
|
|
|
Your question is invalid because a collection has no last element. A more specialized collection that does have a complete ordering is a list. A more specialized collection that does not have an ordering is a dictionary. |
||
|
|
