When I try to use ?.First() on an enumerable object, it throws the error "sequence contains no elements" when the object contains no items.
I recognise that the solution is to use .FirstOrDefault(), but I don't understand why my original effort doesn't work. Am I misunderstanding something or is it just 'one of those things'?
An empty sequence is not
null, it's an actual object that simply has no items in it.?.doesn't call the member in question if the expression isnull, which it's not, soFirstis called, andFirstthrows an exception when it is passed an empty sequence.