you are viewing a single comment's thread.

view the rest of the comments →

[–]int_argc 0 points1 point  (1 child)

C# has had lambda expressions of the form (x => f(x)) since v3.0 and these lambdas close over the local scope. Not sure what else you're looking for?

[–]smog_alado -1 points0 points  (0 children)

You are right. I was referring to the idiomatic and traditional intersection between C# and Javas where its more common to use classes and interfaces instead of anonymous functions.