I have a collection of objects. Each object contains a string called "Status". I want to check the collection for the last reference of the status being either "Paid" or "NotPaid".
Any ideas?
Thanks
|
I have a collection of objects. Each object contains a string called "Status". I want to check the collection for the last reference of the status being either "Paid" or "NotPaid". Any ideas? Thanks |
|||||||
|
|
Note that "colleciton" by itself does not dictate sequence or ordering, hence there is no concept of last element in a collection. For a sequenced/ordered version of collection you might have to use List/Queue, in which case getting the last element is very trivial. |
|||||||||||||
|