-6

Can someone explain this to me in simple and terms and give me an example if possible? I've looked around but no one seems to explain the operator properly that I can actually understand it.

EDIT: I see it a lot in MVC apps, which is why I want to understand it

Reece
  • 1
  • 3
  • http://www.dotnetperls.com/lambda it explains very nicely. Go ahead and read it. There are examples too. – Shaharyar Jan 12 '16 at 17:27
  • 3
    If you have a specific question that the duplicates don't cover then come back with a new question. – D Stanley Jan 12 '16 at 17:28
  • [Another question](http://stackoverflow.com/questions/167343/c-sharp-lambda-expressions-why-should-i-use-them) that may be of interest to you – Drew Kennedy Jan 12 '16 at 17:28
  • What part of https://msdn.microsoft.com/en-US/library/bb397687.aspx do you have problems understanding? That contains examples and explains it in fairly precise technical terms well. – JB King Jan 12 '16 at 17:28
  • http://stackoverflow.com/questions/274022/how-do-i-pronounce-as-used-in-lambda-expressions-in-net <-- I like the pronounciation of the lambda as "such that". – maxshuty Jan 12 '16 at 17:31

1 Answers1

-3

It's simply the syntax the compiler uses to treat a bit of plain text as a lambda expression. There's no hidden magic behind it.

Bigsby
  • 952
  • 6
  • 20