I'm using this expression to get the most valuable item:
var notaMaisVelha = resultCrawler.Ranges.Max(c => c.Item);
The problem is that this expression returns the value of the item field and I wanted the object.
How do I get the object with the largest item field?