5 ms·
To add on that, you can define your lambdas as static to make sure you're not capturing anything by mistake. Something like dates.Where(static x => x.Date > Da
by theolivenbaum 1y ago
To add on that, you can define your lambdas as static to make sure you're not capturing anything by mistake.
Something like dates.Where(static x => x.Date > DateTime.Now)