Linq Expression using Where, OrderBy and Select

PHOTO EMBED

Sat Oct 16 2021 06:22:44 GMT+0000 (Coordinated Universal Time)

Saved by @funcProgramming

Enumerable.Range(1, 100).
Where(i => i % 20 == 0).
OrderBy(i => -i).
Select(i => $"{i}%")
// => ["100%", "80%", "60%", "40%", "20%"]
content_copyCOPY