What is this .. =>

Feb 18 2008 9:05 AM

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)