Recently, i read "Professional C# 5.0 and .NET 4.5.1 by Christian Nagel; Jay Glynn; Morgan Skinner" book. And i confused about: "in case,the syntax of anonymous methods simpler than syntax of lambda expressions" in book.
Details in Chapter 8: Delegates, Lambdas, and Events
LAMBDA EXPRESSIONS "NOTE The syntax of lambda expressions is simpler than the syntax of anonymous methods. In a case where a method to be invoked has parameters and you don’t need the parameters, the syntax of anonymous methods is simpler, as you don’t need to supply parameters in that case."
Can anyone explain/sample why anonymous methods don't need to supply parameters in that case?