Use Aggregate:
items.Aggregate((c, d) => c.Score < d.Score ? c : d)
As suggested, exact same line with more friendly names:
items.Aggregate((minItem, nextItem) => minItem.Score < nextItem.Score ? minItem : nextItem)
Use Aggregate:
items.Aggregate((c, d) => c.Score < d.Score ? c : d)
As suggested, exact same line with more friendly names:
items.Aggregate((minItem, nextItem) => minItem.Score < nextItem.Score ? minItem : nextItem)