Sat Oct 16 2021 05:51:30 GMT+0000 (UTC)
Saved by @funcProgramming
Func<int, int> triple = x => x * 3; var range = Enumerable.Range(1, 3); var triples = range.Select(triple); triples // => [3, 6, 9]
Copy this HTML code:
Preview:
open_in_newInstructions on embedding in Medium
Comments