tags:

views:

263

answers:

2

Possible Duplicate:
How do I pronounce "=>” as used in lambda expressions in .Net?

What do i read => as? As in:

listOfFoo.Where(x => x.Size > 10);

If i used the standard mathematical notation it reads as implies. So the entire line becomes:

x implies x's Size property is greater than ten

That makes no sense; so i'm unable to make heads or tails of that code.

And i tried googling for "=>", but that's a spectacularly futile exercise.


Just as ridiculous as the conditional operator; anyone using that should be poked in the eye for trying to show off how cool they are.

A: 

I read it as match x where size > 10.

James