Possible Duplicate:
What is the => token called?
Hey,
In LINQ what is the name of the => operator e.g:
list.Where(a => a.value == 5);
Hey, In LINQ what is the name of the => operator e.g:
|
|||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
It's called the lambda operator and is pronounced "goes to". From here. |
|||||||||||||||
|
|
It's the lambda operator. Or at least, an expression of the form
(or any of the longer forms involving |
|||||||||||||
|
|
You read it as "such that". So your example reads as "list where a such that a dot value equals 5" |
|||
|
|
|
Its used to create delegates or expression tree types, and yes the new term for it is lambda expression |
|||
|
|