Marcello Galhardo
12/05/2022, 5:13 PMSequence
from a public method? I normally use Sequence to optimise collection operations, and return the end result as a list or so. However, now I have a scenario in which I want to return a collection but half of the operations may change depending on the scenario. I could early terminate (return to a list) and sacrifice performance (as more operations will be required) or return the Sequence
. What do you think? 🤔Paul Griffith
12/05/2022, 5:14 PM