4
Answers

What is this .. =>

Michal Moore

Michal Moore

16y
2k
1

Can you tell me what this (  => ) means, in the following context?

IEnumerable<string> query = names 
                            .Where(s => s.Length == 5) 
                            .OrderBy(s => s)
                            .Select(s => s.ToUpper());
 
Answers (4)