The => token is part of the C# 3.0 lambda syntax. My efforts to find the name of this token have failed so far.
Asked
Active
Viewed 1,283 times
10
-
http://msdn.microsoft.com/en-us/library/bb311046.aspx Refers to it as the "lambda operator" which is often read as "goes to" – dss539 May 18 '09 at 21:16
-
Rubyists might call it the "broken space ship operator" :-) – Peter Kofler Jun 30 '09 at 11:46
-
Possible duplicate of [How do I pronounce "=>" as used in lambda expressions in .Net](https://stackoverflow.com/questions/274022/how-do-i-pronounce-as-used-in-lambda-expressions-in-net) – Michael Freidgeim May 12 '18 at 11:09
5 Answers
14

Gishu
- 134,492
- 47
- 225
- 308

John Rasch
- 62,489
- 19
- 106
- 139
-
Yes, I should have found this fairly easily myself. http://msdn.microsoft.com/en-us/library/bb311046.aspx – dss539 May 18 '09 at 21:16
-
7
What it is called, in terms of how to pronounce it when reading code, is covered by Eric Lippert in Reading Code Over the Telephone.

bdukes
- 152,002
- 23
- 148
- 175
-
Thanks. This has been bugging me since it came out. I can't say it so it is harder for me to grok it. – Robert Kozak May 18 '09 at 21:29
3
http://msdn.microsoft.com/en-us/library/bb397687.aspx
Taken from the above: All lambda expressions use the lambda operator =>, which is read as "goes to".

user109023
- 31
- 1